fix: stable db migration + beta migration to stable
This commit is contained in:
13
server/db/beta/migrations-sqlite/2.0.0-beta.205.js
Normal file
13
server/db/beta/migrations-sqlite/2.0.0-beta.205.js
Normal file
@@ -0,0 +1,13 @@
|
||||
exports.up = knex => {
|
||||
return knex.schema
|
||||
.createTable('analytics', table => {
|
||||
table.string('key').notNullable().primary()
|
||||
table.boolean('isEnabled').notNullable().defaultTo(false)
|
||||
table.json('config').notNullable()
|
||||
})
|
||||
}
|
||||
|
||||
exports.down = knex => {
|
||||
return knex.schema
|
||||
.dropTableIfExists('analytics')
|
||||
}
|
Reference in New Issue
Block a user