Browse Source

fix: error on migrating tables (#1)

LoGin 1 year ago
parent
commit
13ec2b72f6
1 changed files with 2 additions and 1 deletions
  1. 2 1
      src/db.rs

+ 2 - 1
src/db.rs

@@ -332,7 +332,8 @@ CREATE table review_prefs (
     assigned_prs INT[] NOT NULL DEFAULT array[]::INT[]
 );",
     "
-CREATE EXTENSION intarray;
+CREATE EXTENSION intarray;",
+    "
 CREATE UNIQUE INDEX review_prefs_user_id ON review_prefs(user_id);
  ",
 ];