Files
kener/migrations/20250201152526_add_new_column_to_incidents.js
T
2026-01-22 11:19:13 +05:30

12 lines
287 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");
});
}