feat: Add enable templates column to config
This commit is contained in:
@@ -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');
|
||||
});
|
||||
}
|
||||
Reference in New Issue
Block a user