aboutsummaryrefslogtreecommitdiff
path: root/src/main/resources/db/migration/V1.4__ActivityPub followers.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.4__ActivityPub followers.sql
parent261a46ba225600d4a6554efb3c219537d08f2dd4 (diff)
move Flyway resources back to resources/
Diffstat (limited to 'src/main/resources/db/migration/V1.4__ActivityPub followers.sql')
-rw-r--r--src/main/resources/db/migration/V1.4__ActivityPub followers.sql7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/main/resources/db/migration/V1.4__ActivityPub followers.sql b/src/main/resources/db/migration/V1.4__ActivityPub followers.sql
new file mode 100644
index 00000000..16b39f62
--- /dev/null
+++ b/src/main/resources/db/migration/V1.4__ActivityPub followers.sql
@@ -0,0 +1,7 @@
+CREATE TABLE IF NOT EXISTS `followers` (
+ `user_id` int(10) unsigned DEFAULT NULL,
+ `acct` char(64) NOT NULL,
+ `ts` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
+ UNIQUE KEY `acct` (`acct`),
+ foreign key (user_id) references users(id)
+); \ No newline at end of file