feat: Add enable templates column to config

This commit is contained in:
Faruk AYDIN
2025-03-04 12:20:23 +01:00
parent b6581cef10
commit 89e9a93872
7 changed files with 22 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
export async function up(knex) {
return await knex.schema.alterTable('config', (table) => {
table.boolean('enable_templates');
});
}
export async function down(knex) {
return await knex.schema.alterTable('config', (table) => {
table.dropColumn('enable_templates');
});
}