diff options
author | Chocobozzz <me@florianbigard.com> | 2019-07-10 14:06:19 +0200 |
---|---|---|
committer | Chocobozzz <chocobozzz@cpy.re> | 2019-07-24 10:58:16 +0200 |
commit | ffb321bedca46d6987c7b31dd58e5dea96ea2ea2 (patch) | |
tree | 019f0427c1860ae0b00694c43f1be8d5fe1aa995 /server/initializers/migrations | |
parent | 7cd4d2ba10106c10602c86f74f55743ded588896 (diff) | |
download | PeerTube-ffb321bedca46d6987c7b31dd58e5dea96ea2ea2.tar.gz PeerTube-ffb321bedca46d6987c7b31dd58e5dea96ea2ea2.tar.zst PeerTube-ffb321bedca46d6987c7b31dd58e5dea96ea2ea2.zip |
WIP plugins: load theme on client side
Diffstat (limited to 'server/initializers/migrations')
-rw-r--r-- | server/initializers/migrations/0400-user-theme.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/initializers/migrations/0400-user-theme.ts b/server/initializers/migrations/0400-user-theme.ts index 2c1763890..f74d76115 100644 --- a/server/initializers/migrations/0400-user-theme.ts +++ b/server/initializers/migrations/0400-user-theme.ts | |||
@@ -9,7 +9,7 @@ async function up (utils: { | |||
9 | const data = { | 9 | const data = { |
10 | type: Sequelize.STRING, | 10 | type: Sequelize.STRING, |
11 | allowNull: false, | 11 | allowNull: false, |
12 | defaultValue: 'default' | 12 | defaultValue: 'instance-default' |
13 | } | 13 | } |
14 | 14 | ||
15 | await utils.queryInterface.addColumn('user', 'theme', data) | 15 | await utils.queryInterface.addColumn('user', 'theme', data) |