aboutsummaryrefslogtreecommitdiff
path: root/migrations/auth
diff options
context:
space:
mode:
authorFrederick Muriuki Muriithi2022-11-08 16:40:55 +0300
committerFrederick Muriuki Muriithi2022-11-08 16:40:55 +0300
commit3a44dd8750a212b5ed26cb0882dd1ad3dc3085d6 (patch)
treefb1b9be7e703347cb237c25f18ec65ff5e653545 /migrations/auth
parentd5980f1daef38fe831a2113c4eeccf5bcca4388d (diff)
downloadgenenetwork3-3a44dd8750a212b5ed26cb0882dd1ad3dc3085d6.tar.gz
Migrations: Init `resource_categories` with initial categories
* migrations/auth/20221108_04_CKcSL-init-data-in-resource-categories-table.py: new migration. * tests/unit/auth/test_migration_init_data_in_resource_categories_table.py: test new migration.
Diffstat (limited to 'migrations/auth')
-rw-r--r--migrations/auth/20221108_04_CKcSL-init-data-in-resource-categories-table.py25
1 files changed, 25 insertions, 0 deletions
diff --git a/migrations/auth/20221108_04_CKcSL-init-data-in-resource-categories-table.py b/migrations/auth/20221108_04_CKcSL-init-data-in-resource-categories-table.py
new file mode 100644
index 0000000..76ffbef
--- /dev/null
+++ b/migrations/auth/20221108_04_CKcSL-init-data-in-resource-categories-table.py
@@ -0,0 +1,25 @@
+"""
+Init data in resource_categories table
+"""
+
+from yoyo import step
+
+__depends__ = {'20221108_03_Pbhb1-create-resource-categories-table'}
+
+steps = [
+ step(
+ """
+ INSERT INTO resource_categories VALUES
+ ('fad071a3-2fc8-40b8-992b-cdefe7dcac79', 'mrna', 'mRNA Dataset'),
+ ('548d684b-d4d1-46fb-a6d3-51a56b7da1b3', 'phenotype', 'Phenotype (Publish) Dataset'),
+ ('48056f84-a2a6-41ac-8319-0e1e212cba2a', 'genotype', 'Genotype Dataset')
+ """,
+ """
+ DELETE FROM resource_categories WHERE resource_category_id IN
+ (
+ 'fad071a3-2fc8-40b8-992b-cdefe7dcac79',
+ '548d684b-d4d1-46fb-a6d3-51a56b7da1b3',
+ '48056f84-a2a6-41ac-8319-0e1e212cba2a'
+ )
+ """)
+]