Skip to content

Commit

Permalink
“rebase”
Browse files Browse the repository at this point in the history
  • Loading branch information
Alva8756 committed Aug 17, 2023
1 parent 97b483f commit 487f831
Show file tree
Hide file tree
Showing 10 changed files with 6,210 additions and 0 deletions.
32 changes: 32 additions & 0 deletions db/migrations/00021_bom.sql
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
Loading

0 comments on commit 487f831

Please sign in to comment.