diff --git a/migrations/20260520044355_actors_unique.js b/migrations/20260520044355_actors_unique.js index 4546f5ac..c00ee10d 100644 --- a/migrations/20260520044355_actors_unique.js +++ b/migrations/20260520044355_actors_unique.js @@ -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'); }); };