mirror of
https://github.com/rajnandan1/kener.git
synced 2026-06-23 04:10:22 +00:00
12 lines
300 B
JavaScript
12 lines
300 B
JavaScript
export function up(knex) {
|
|
return knex.schema.alterTable("incidents", function (table) {
|
|
table.text("incident_source").defaultTo("DASHBOARD");
|
|
});
|
|
}
|
|
|
|
export function down(knex) {
|
|
return knex.schema.alterTable("incidents", function (table) {
|
|
table.dropColumn("incident_source");
|
|
});
|
|
}
|