-
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
10 changed files
with
6,210 additions
and
0 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,32 @@ | ||
-- +goose Up | ||
-- +goose StatementBegin | ||
|
||
CREATE TABLE bom_info ( | ||
serial_num STRING PRIMARY KEY NOT NULL, | ||
mac_aoc_address STRING NULL, | ||
num_defi_pmi STRING NULL, | ||
num_def_pwd STRING NULL, | ||
metro STRING NULL | ||
); | ||
|
||
CREATE TABLE mac_aoc_address_bom ( | ||
mac_aoc_address STRING PRIMARY KEY NOT NULL, | ||
serial_num STRING NOT NULL REFERENCES bom_info(serial_num) ON DELETE CASCADE | ||
); | ||
|
||
CREATE TABLE bmc_mac_address_bom ( | ||
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_bom; | ||
DROP TABLE bmc_mac_address_bom; | ||
|
||
-- +goose StatementEnd |
Oops, something went wrong.