feat: assets move + comments migration + admin users UI
This commit is contained in:
11
server/db/migrations-sqlite/2.4.36.js
Normal file
11
server/db/migrations-sqlite/2.4.36.js
Normal file
@@ -0,0 +1,11 @@
|
||||
exports.up = knex => {
|
||||
return knex.schema
|
||||
.alterTable('comments', table => {
|
||||
table.text('render').notNullable().defaultTo('')
|
||||
table.string('name').notNullable().defaultTo('')
|
||||
table.string('email').notNullable().defaultTo('')
|
||||
table.string('ip').notNullable().defaultTo('')
|
||||
})
|
||||
}
|
||||
|
||||
exports.down = knex => { }
|
Reference in New Issue
Block a user