Files
kener/migrations/20260120120000_add_monitor_settings_json.ts
T
2026-01-22 11:19:13 +05:30

14 lines
373 B
TypeScript

import type { Knex } from "knex";
export async function up(knex: Knex): Promise<void> {
await knex.schema.alterTable("monitors", (table) => {
table.text("monitor_settings_json").nullable();
});
}
export async function down(knex: Knex): Promise<void> {
await knex.schema.alterTable("monitors", (table) => {
table.dropColumn("monitor_settings_json");
});
}