aboutsummaryrefslogtreecommitdiff
path: root/src/main/resources/db/specific/postgresql/V1.5__Drop acct index.sql
diff options
context:
space:
mode:
authorGravatar Vitaly Takmazov2022-12-03 15:28:06 +0300
committerGravatar Vitaly Takmazov2022-12-14 12:57:52 +0300
commit0c0ea8897e64461b1cfa9cd86a939b48f0bdd640 (patch)
treef11c73b8246b0724b26ca08529c3c702e1722d79 /src/main/resources/db/specific/postgresql/V1.5__Drop acct index.sql
parent8344ea3e3e652f5307ffb6115d6fdebf638ba098 (diff)
Initial PostgreSQL schema and profile
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