-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
6,241 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
-- +goose Up | ||
-- +goose StatementBegin | ||
|
||
CREATE TABLE bom_info ( | ||
serial_num STRING PRIMARY KEY NOT NULL, | ||
aoc_mac_address STRING NULL, | ||
bmc_mac_address STRING NULL, | ||
num_defi_pmi STRING NULL, | ||
num_def_pwd STRING NULL, | ||
metro STRING NULL | ||
); | ||
|
||
CREATE TABLE aoc_mac_address ( | ||
aoc_mac_address STRING PRIMARY KEY NOT NULL, | ||
serial_num STRING NOT NULL REFERENCES bom_info(serial_num) ON DELETE CASCADE | ||
); | ||
|
||
CREATE TABLE bmc_mac_address ( | ||
bmc_mac_address STRING PRIMARY KEY NOT NULL, | ||
serial_num STRING NOT NULL REFERENCES bom_info(serial_num) ON DELETE CASCADE | ||
); | ||
|
||
|
||
-- +goose StatementEnd | ||
|
||
-- +goose Down | ||
-- +goose StatementBegin | ||
|
||
DROP TABLE bom_info; | ||
DROP TABLE aoc_mac_address; | ||
DROP TABLE bmc_mac_address; | ||
|
||
-- +goose StatementEnd |
Oops, something went wrong.