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