aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/models/account
diff options
context:
space:
mode:
authorChocobozzz <florian.bigard@gmail.com>2017-11-15 11:25:53 +0100
committerChocobozzz <florian.bigard@gmail.com>2017-11-27 19:40:52 +0100
commit59c857da5961e2bcddcfd07832783c1e4afcd01a (patch)
tree899998038c38fdf6a6238945a0fbc79181d5cea0 /server/models/account
parent608624252466acf9f1d9ee1c1170bd4fe4d18d18 (diff)
downloadPeerTube-59c857da5961e2bcddcfd07832783c1e4afcd01a.tar.gz
PeerTube-59c857da5961e2bcddcfd07832783c1e4afcd01a.tar.zst
PeerTube-59c857da5961e2bcddcfd07832783c1e4afcd01a.zip
Fix error when creating a fresh database
Diffstat (limited to 'server/models/account')
-rw-r--r--server/models/account/account.ts2
1 files changed, 0 insertions, 2 deletions
diff --git a/server/models/account/account.ts b/server/models/account/account.ts
index ee00c5aef..464105261 100644
--- a/server/models/account/account.ts
+++ b/server/models/account/account.ts
@@ -255,7 +255,6 @@ function associate (models) {
255 name: 'accountId', 255 name: 'accountId',
256 allowNull: false 256 allowNull: false
257 }, 257 },
258 as: 'following',
259 onDelete: 'cascade' 258 onDelete: 'cascade'
260 }) 259 })
261 260
@@ -264,7 +263,6 @@ function associate (models) {
264 name: 'targetAccountId', 263 name: 'targetAccountId',
265 allowNull: false 264 allowNull: false
266 }, 265 },
267 as: 'followers',
268 onDelete: 'cascade' 266 onDelete: 'cascade'
269 }) 267 })
270} 268}