aboutsummaryrefslogtreecommitdiff
path: root/src/main/resources/db/migration/V1.5__Drop acct index.sql
diff options
context:
space:
mode:
authorGravatar Vitaly Takmazov2021-03-31 00:29:53 +0300
committerGravatar Vitaly Takmazov2021-03-31 00:29:53 +0300
commit661b514403d8d872ede8ae9ad656ec7173399551 (patch)
treeefd01308de9789280c6ee7103ede51fd9669927a /src/main/resources/db/migration/V1.5__Drop acct index.sql
parent261a46ba225600d4a6554efb3c219537d08f2dd4 (diff)
move Flyway resources back to resources/
Diffstat (limited to 'src/main/resources/db/migration/V1.5__Drop acct index.sql')
-rw-r--r--src/main/resources/db/migration/V1.5__Drop acct index.sql6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/main/resources/db/migration/V1.5__Drop acct index.sql b/src/main/resources/db/migration/V1.5__Drop acct index.sql
new file mode 100644
index 00000000..58757d88
--- /dev/null
+++ b/src/main/resources/db/migration/V1.5__Drop acct index.sql
@@ -0,0 +1,6 @@
+ALTER TABLE followers ADD COLUMN `acct_migr` char(64) NOT NULL;
+UPDATE followers SET `acct_migr` = `acct`;
+ALTER TABLE followers DROP COLUMN `acct`;
+ALTER TABLE followers ADD COLUMN `acct` char(64) NOT NULL;
+UPDATE followers SET `acct` = `acct_migr`;
+ALTER TABLE followers DROP COLUMN `acct_migr`; \ No newline at end of file