about summary refs log tree commit diff
path: root/migrations/auth/20230907_01_pjnxz-refactor-add-resource-ownership-table.py
diff options
context:
space:
mode:
Diffstat (limited to 'migrations/auth/20230907_01_pjnxz-refactor-add-resource-ownership-table.py')
-rw-r--r--migrations/auth/20230907_01_pjnxz-refactor-add-resource-ownership-table.py32
1 files changed, 32 insertions, 0 deletions
diff --git a/migrations/auth/20230907_01_pjnxz-refactor-add-resource-ownership-table.py b/migrations/auth/20230907_01_pjnxz-refactor-add-resource-ownership-table.py
new file mode 100644
index 0000000..37fcfe7
--- /dev/null
+++ b/migrations/auth/20230907_01_pjnxz-refactor-add-resource-ownership-table.py
@@ -0,0 +1,32 @@
+"""
+refactor: add resource_ownership table
+"""
+
+from yoyo import step
+
+__depends__ = {'20230410_02_WZqSf-create-mrna-resources-table'}
+
+steps = [
+    step(
+        """
+        CREATE TABLE IF NOT EXISTS resource_ownership(
+        -- This table links resources to groups, where relevant
+          group_id TEXT NOT NULL,
+          resource_id TEXT NOT NULL,
+          PRIMARY KEY(group_id, resource_id),
+          FOREIGN KEY(group_id)
+            REFERENCES groups(group_id)
+            ON UPDATE CASCADE ON DELETE RESTRICT,
+          FOREIGN KEY(resource_id)
+            REFERENCES resources(resource_id)
+            ON UPDATE CASCADE ON DELETE RESTRICT
+        ) WITHOUT ROWID
+        """,
+        "DROP TABLE IF EXISTS resource_ownership"),
+    step(# Copy over data
+        """
+        INSERT INTO resource_ownership
+        SELECT group_id, resource_id FROM resources
+        """
+    )
+]