This commit is contained in:
HRG @ SCExC 2024-02-04 10:11:47 -05:00
parent 80c6db1abd
commit f370a2fe68
2 changed files with 3 additions and 8 deletions

View file

@ -35,13 +35,6 @@ CREATE TABLE routes (
FOREIGN KEY(structure_id) REFERENCES structures(structure_id),
FOREIGN KEY(user_id) REFERENCES users(user_id)
);
CREATE TABLE migrations (
migration_id INTEGER PRIMARY KEY AUTOINCREMENT,
db_id INTEGER,
sql_content TEXT NOT NULL,
name TEXT NOT NULL,
FOREIGN KEY(db_id) REFERENCES dbs(db_id)
);
CREATE TABLE structure_dbs (
db_id INTEGER,
structure_id INTEGER,
@ -56,4 +49,3 @@ CREATE TABLE structure_templates (
FOREIGN KEY(template_id) REFERENCES templates(template_id),
FOREIGN KEY(structure_id) REFERENCES structures(structure_id)
);
a