Fix apostrophe in Children's Animation migration + bump CACHEBUST to v5

Escape single quote in seed-episodic-subgenres migration that caused
"column Children's Animation does not exist" PostgreSQL error.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
Dorian
2026-02-13 19:34:31 +00:00
parent f52e7dda7e
commit 34c48d9f6e
2 changed files with 3 additions and 3 deletions

View File

@@ -52,7 +52,7 @@ export class SeedEpisodicSubgenres1730990068405 implements MigrationInterface {
(gen_random_uuid(), 'a0bf144a-9bb7-4152-b30f-6d52ad064cf4', 'Travel Shows'), (gen_random_uuid(), 'a0bf144a-9bb7-4152-b30f-6d52ad064cf4', 'Travel Shows'),
(gen_random_uuid(), 'a0bf144a-9bb7-4152-b30f-6d52ad064cf4', 'Survival Shows'), (gen_random_uuid(), 'a0bf144a-9bb7-4152-b30f-6d52ad064cf4', 'Survival Shows'),
(gen_random_uuid(), '57751942-f0ba-499a-b220-7985059bc194', 'Adult Animation'), (gen_random_uuid(), '57751942-f0ba-499a-b220-7985059bc194', 'Adult Animation'),
(gen_random_uuid(), '57751942-f0ba-499a-b220-7985059bc194', "Children's Animation"), (gen_random_uuid(), '57751942-f0ba-499a-b220-7985059bc194', 'Children''s Animation'),
(gen_random_uuid(), '57751942-f0ba-499a-b220-7985059bc194', 'Anime'), (gen_random_uuid(), '57751942-f0ba-499a-b220-7985059bc194', 'Anime'),
(gen_random_uuid(), 'e90710dd-cac4-4997-923a-78b19d778876', 'Educational'), (gen_random_uuid(), 'e90710dd-cac4-4997-923a-78b19d778876', 'Educational'),
(gen_random_uuid(), 'e90710dd-cac4-4997-923a-78b19d778876', 'Adventure'), (gen_random_uuid(), 'e90710dd-cac4-4997-923a-78b19d778876', 'Adventure'),

View File

@@ -47,7 +47,7 @@ services:
context: ./backend context: ./backend
dockerfile: Dockerfile dockerfile: Dockerfile
args: args:
CACHEBUST: "4" CACHEBUST: "5"
restart: unless-stopped restart: unless-stopped
environment: environment:
# ── Core ───────────────────────────────────────────── # ── Core ─────────────────────────────────────────────
@@ -179,7 +179,7 @@ services:
context: ./backend context: ./backend
dockerfile: Dockerfile.ffmpeg dockerfile: Dockerfile.ffmpeg
args: args:
CACHEBUST: "4" CACHEBUST: "5"
restart: unless-stopped restart: unless-stopped
environment: environment:
ENVIRONMENT: production ENVIRONMENT: production