You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
391 B
15 lines
391 B
1 year ago
|
exports.up = function (knex) {
|
||
|
// update monitor.push_token to 32 length
|
||
|
return knex.schema
|
||
|
.alterTable("monitor", function (table) {
|
||
|
table.string("push_token", 32).alter();
|
||
|
});
|
||
|
};
|
||
|
|
||
|
exports.down = function (knex) {
|
||
|
return knex.schema
|
||
|
.alterTable("monitor", function (table) {
|
||
|
table.string("push_token", 20).alter();
|
||
|
});
|
||
|
};
|