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.
22 lines
788 B
22 lines
788 B
12 months ago
|
exports.up = function (knex) {
|
||
|
return knex.schema
|
||
|
.createTable("remote_browser", function (table) {
|
||
|
table.increments("id");
|
||
|
table.string("name", 255).notNullable();
|
||
|
table.string("url", 255).notNullable();
|
||
|
table.integer("user_id").unsigned();
|
||
|
}).alterTable("monitor", function (table) {
|
||
|
// Add new column monitor.remote_browser
|
||
|
table.integer("remote_browser").nullable().defaultTo(null).unsigned()
|
||
|
.index()
|
||
|
.references("id")
|
||
|
.inTable("remote_browser");
|
||
|
});
|
||
|
};
|
||
|
|
||
|
exports.down = function (knex) {
|
||
|
return knex.schema.dropTable("remote_browser").alterTable("monitor", function (table) {
|
||
|
table.dropColumn("remote_browser");
|
||
|
});
|
||
|
};
|