diff options
Diffstat (limited to 'migrations/auth')
-rw-r--r-- | migrations/auth/20221110_02_z1dWf-create-mrna-resources-table.py | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/migrations/auth/20221110_02_z1dWf-create-mrna-resources-table.py b/migrations/auth/20221110_02_z1dWf-create-mrna-resources-table.py new file mode 100644 index 0000000..0959116 --- /dev/null +++ b/migrations/auth/20221110_02_z1dWf-create-mrna-resources-table.py @@ -0,0 +1,22 @@ +""" +Create 'mrna_resources' table + +NOTE: One "mRNA dataset" should only ever be linked to one and only one resource object. + One "resource object" should only ever be linked to one and only one "mRNA dataset". +""" + +from yoyo import step + +__depends__ = {'20221110_01_WtZ1I-create-resources-table'} + +steps = [ + step( + """ + CREATE TABLE IF NOT EXISTS mrna_resources( + resource_id TEXT PRIMARY KEY, + dataset_id TEXT NOT NULL UNIQUE, + FOREIGN KEY(resource_id) REFERENCES resources(resource_id) + ) WITHOUT ROWID + """, + "DROP TABLE IF EXISTS mrna_resources") +] |