feat: admin comments page
This commit is contained in:
10
server/db/migrations-sqlite/2.3.14.js
Normal file
10
server/db/migrations-sqlite/2.3.14.js
Normal file
@@ -0,0 +1,10 @@
|
||||
exports.up = knex => {
|
||||
return knex.schema
|
||||
.createTable('commentProviders', table => {
|
||||
table.string('key').notNullable().primary()
|
||||
table.boolean('isEnabled').notNullable().defaultTo(false)
|
||||
table.json('config').notNullable()
|
||||
})
|
||||
}
|
||||
|
||||
exports.down = knex => { }
|
Reference in New Issue
Block a user