This commit is contained in:
parent
a7d1b99719
commit
10a518e72e
|
@ -0,0 +1,13 @@
|
||||||
|
// Fix #5721: Change proxy port column type to integer to support larger port numbers
|
||||||
|
exports.up = function (knex) {
|
||||||
|
return knex.schema
|
||||||
|
.alterTable("proxy", function (table) {
|
||||||
|
table.integer("port").alter();
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
exports.down = function (knex) {
|
||||||
|
return knex.schema.alterTable("proxy", function (table) {
|
||||||
|
table.smallint("port").alter();
|
||||||
|
});
|
||||||
|
};
|
Loading…
Reference in New Issue