From 75fe8f1b8b3fba09cd6a127ea4f82b950c05fdcc Mon Sep 17 00:00:00 2001 From: DebaucheryLibrarian Date: Wed, 20 May 2026 05:15:35 +0200 Subject: [PATCH] Added comment field to actors table. --- migrations/20260520044355_actors_unique.js | 2 ++ 1 file changed, 2 insertions(+) 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'); }); };