fix: stable db migration + beta migration to stable

This commit is contained in:
NGPixel
2019-11-03 21:59:58 -05:00
parent e9afcfcd94
commit 8eddc4799e
27 changed files with 750 additions and 15 deletions

View File

@@ -0,0 +1,15 @@
exports.up = knex => {
return knex.schema
.table('assets', table => {
table.dropColumn('basename')
table.string('hash').notNullable().defaultTo('')
})
}
exports.down = knex => {
return knex.schema
.table('assets', table => {
table.dropColumn('hash')
table.string('basename').notNullable().defaultTo('')
})
}