13 lines
253 B
JavaScript
13 lines
253 B
JavaScript
|
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) {
|
||
|
|
||
|
}
|