Added comment field to actors table.

This commit is contained in:
DebaucheryLibrarian
2026-05-20 05:15:35 +02:00
parent 41c5efe879
commit 75fe8f1b8b

View File

@@ -6,6 +6,7 @@ exports.up = async function(knex) {
await knex.schema.alterTable('actors', (table) => {
table.boolean('allow_global_match');
table.text('comment');
});
};
@@ -28,5 +29,6 @@ exports.down = async function(knex) {
await knex.schema.alterTable('actors', (table) => {
table.dropColumn('allow_global_match');
table.dropColumn('comment');
});
};