aboutsummaryrefslogtreecommitdiff
path: root/db/migrations.go
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrations.go')
-rw-r--r--db/migrations.go11
1 files changed, 11 insertions, 0 deletions
diff --git a/db/migrations.go b/db/migrations.go
index f0df49c..e8fc40d 100644
--- a/db/migrations.go
+++ b/db/migrations.go
@@ -89,4 +89,15 @@ var migrations []Migration = []Migration{
89 "DROP TYPE market_config_status", 89 "DROP TYPE market_config_status",
90 }, 90 },
91 }, 91 },
92 {
93 Version: 201805131000,
94 Up: []string{
95 "CREATE TYPE user_role AS ENUM ('admin', 'user')",
96 "ALTER TABLE users ADD role user_role NOT NULL DEFAULT 'user'",
97 },
98 Down: []string{
99 "ALTER TABLE users DROP COLUMN role",
100 "DROP TYPE user_role",
101 },
102 },
92} 103}