feat: timezone + dateFOrmat + appearance profile settings
This commit is contained in:
15
server/db/migrations-sqlite/2.4.13.js
Normal file
15
server/db/migrations-sqlite/2.4.13.js
Normal file
@@ -0,0 +1,15 @@
|
||||
exports.up = knex => {
|
||||
return knex.schema
|
||||
.alterTable('pages', table => {
|
||||
table.json('extra').notNullable().defaultTo('{}')
|
||||
})
|
||||
.alterTable('pageHistory', table => {
|
||||
table.json('extra').notNullable().defaultTo('{}')
|
||||
})
|
||||
.alterTable('users', table => {
|
||||
table.string('dateFormat').notNullable().defaultTo('')
|
||||
table.string('appearance').notNullable().defaultTo('')
|
||||
})
|
||||
}
|
||||
|
||||
exports.down = knex => { }
|
Reference in New Issue
Block a user