Added Lucid Flix and Tough Love X to Radical.

This commit is contained in:
DebaucheryLibrarian
2026-01-23 06:19:01 +01:00
parent 718771ea64
commit 05df904f1a
6 changed files with 148 additions and 4 deletions

View File

@@ -0,0 +1,14 @@
exports.up = async (knex) => {
await knex.raw(`
/* allow scenes without dates to be mixed inbetween scenes with dates */
ALTER TABLE series
ADD COLUMN effective_date timestamptz
GENERATED ALWAYS AS (COALESCE(date, created_at)) STORED;
`);
};
exports.down = async (knex) => {
await knex.schema.alterTable('series', (table) => {
table.dropColumn('effective_date');
});
};