aboutsummaryrefslogtreecommitdiff
path: root/src/main/resources/db/specific/postgresql/V1.5__Drop acct index.sql
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/resources/db/specific/postgresql/V1.5__Drop acct index.sql')
-rw-r--r--src/main/resources/db/specific/postgresql/V1.5__Drop acct index.sql6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/main/resources/db/specific/postgresql/V1.5__Drop acct index.sql b/src/main/resources/db/specific/postgresql/V1.5__Drop acct index.sql
new file mode 100644
index 00000000..d4f1c6ef
--- /dev/null
+++ b/src/main/resources/db/specific/postgresql/V1.5__Drop acct index.sql
@@ -0,0 +1,6 @@
+ALTER TABLE followers ADD COLUMN acct_migr character varying(64) NOT NULL;
+UPDATE followers SET acct_migr = acct;
+ALTER TABLE followers DROP COLUMN acct;
+ALTER TABLE followers ADD COLUMN acct character varying(64) NOT NULL;
+UPDATE followers SET acct = acct_migr;
+ALTER TABLE followers DROP COLUMN acct_migr; \ No newline at end of file