river-of-ebooks/migrations/20190226195925_publishkey_t...

13 lines
253 B
JavaScript
Raw Normal View History

2019-02-27 01:00:19 +00:00
exports.up = function (knex, Promise) {
return Promise.all([
knex.schema.alterTable('publishkey', t => {
t.bigInteger('created_at').alter()
t.bigInteger('updated_at').alter()
})
])
}
exports.down = function (knex, Promise) {
}