feat: locales availability + IE display mode
This commit is contained in:
13
server/db/migrations-sqlite/2.0.0-beta.217.js
Normal file
13
server/db/migrations-sqlite/2.0.0-beta.217.js
Normal file
@@ -0,0 +1,13 @@
|
||||
exports.up = knex => {
|
||||
return knex.schema
|
||||
.table('locales', table => {
|
||||
table.integer('availability').notNullable().defaultTo(0)
|
||||
})
|
||||
}
|
||||
|
||||
exports.down = knex => {
|
||||
return knex.schema
|
||||
.table('locales', table => {
|
||||
table.dropColumn('availability')
|
||||
})
|
||||
}
|
13
server/db/migrations/2.0.0-beta.217.js
Normal file
13
server/db/migrations/2.0.0-beta.217.js
Normal file
@@ -0,0 +1,13 @@
|
||||
exports.up = knex => {
|
||||
return knex.schema
|
||||
.table('locales', table => {
|
||||
table.integer('availability').notNullable().defaultTo(0)
|
||||
})
|
||||
}
|
||||
|
||||
exports.down = knex => {
|
||||
return knex.schema
|
||||
.table('locales', table => {
|
||||
table.dropColumn('availability')
|
||||
})
|
||||
}
|
Reference in New Issue
Block a user