feat: comments - default provider create (wip) + permissions
This commit is contained in:
8
server/db/migrations-sqlite/2.4.61.js
Normal file
8
server/db/migrations-sqlite/2.4.61.js
Normal file
@@ -0,0 +1,8 @@
|
||||
exports.up = knex => {
|
||||
return knex.schema
|
||||
.alterTable('comments', table => {
|
||||
table.integer('replyTo').unsigned().notNullable().defaultTo(0)
|
||||
})
|
||||
}
|
||||
|
||||
exports.down = knex => { }
|
Reference in New Issue
Block a user