20 lines
432 B
MySQL
20 lines
432 B
MySQL
|
-- description: Add set owners
|
||
|
|
||
|
BEGIN TRANSACTION;
|
||
|
|
||
|
-- Create a table to define each set owners: an id and a name
|
||
|
CREATE TABLE "bricktracker_metadata_owners" (
|
||
|
"id" TEXT NOT NULL,
|
||
|
"name" TEXT NOT NULL,
|
||
|
PRIMARY KEY("id")
|
||
|
);
|
||
|
|
||
|
-- Create a table for the set owners
|
||
|
CREATE TABLE "bricktracker_set_owners" (
|
||
|
"id" TEXT NOT NULL,
|
||
|
PRIMARY KEY("id"),
|
||
|
FOREIGN KEY("id") REFERENCES "bricktracker_sets"("id")
|
||
|
);
|
||
|
|
||
|
COMMIT;
|