mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-11-23 23:04:04 +00:00
Sync the column order
This commit is contained in:
parent
2266f31100
commit
de7bc487ed
1 changed files with 1 additions and 1 deletions
|
@ -272,10 +272,10 @@ async function createTables() {
|
||||||
await knex.schema.createTable("notification", (table) => {
|
await knex.schema.createTable("notification", (table) => {
|
||||||
table.increments("id");
|
table.increments("id");
|
||||||
table.string("name", 255);
|
table.string("name", 255);
|
||||||
table.text("config");
|
|
||||||
table.boolean("active").notNullable().defaultTo(true);
|
table.boolean("active").notNullable().defaultTo(true);
|
||||||
table.integer("user_id").unsigned();
|
table.integer("user_id").unsigned();
|
||||||
table.boolean("is_default").notNullable().defaultTo(false);
|
table.boolean("is_default").notNullable().defaultTo(false);
|
||||||
|
table.text("config");
|
||||||
});
|
});
|
||||||
|
|
||||||
// monitor_notification
|
// monitor_notification
|
||||||
|
|
Loading…
Reference in a new issue