]> git.immae.eu Git - perso/Immae/Projets/Cryptomonnaies/Cryptoportfolio/Front.git/blobdiff - db/migrations.go
User roles.
[perso/Immae/Projets/Cryptomonnaies/Cryptoportfolio/Front.git] / db / migrations.go
index 23847c9f4ad201494afe8f0a8db2ec9180ce5d8e..e8fc40d12762934caa1222995879a0ab2f973b3c 100644 (file)
@@ -73,9 +73,31 @@ var migrations []Migration = []Migration{
                                              FROM report_lines
                                                JOIN reports ON reports.id = report_lines.report_id
                                                JOIN market_configs ON reports.market_config_id = market_configs.id
-                                             WHERE report_lines.payload::jsonb->'checkpoint' IS NOT NULL`,
+                                             WHERE report_lines.payload::jsonb->>'checkpoint' IS NOT NULL`,
                        `CREATE INDEX checkpoints_idx ON report_lines ((payload->>'checkpoint'))`,
                },
                Down: []string{"DROP VIEW view_balances", "DROP INDEX checkpoints_idx"},
        },
+       {
+               Version: 201805101000,
+               Up: []string{
+                       "CREATE TYPE market_config_status AS ENUM ('enabled', 'disabled', 'invalid_credentials')",
+                       "ALTER TABLE market_configs ADD status market_config_status NOT NULL DEFAULT 'disabled'",
+               },
+               Down: []string{
+                       "ALTER TABLE market_configs DROP COLUMN status",
+                       "DROP TYPE market_config_status",
+               },
+       },
+       {
+               Version: 201805131000,
+               Up: []string{
+                       "CREATE TYPE user_role AS ENUM ('admin', 'user')",
+                       "ALTER TABLE users ADD role user_role NOT NULL DEFAULT 'user'",
+               },
+               Down: []string{
+                       "ALTER TABLE users DROP COLUMN role",
+                       "DROP TYPE user_role",
+               },
+       },
 }