Skip to content

Commit d29500b

Browse files
committed
fix: use unbounded String for Episode.director and Episode.writer
String(255) is too short for multi-writer episodes (e.g. Clone Wars has 30+ writers, reaching 443 chars). Film and Show already use unbounded String for the same fields — align Episode to match.
1 parent 7c6bf70 commit d29500b

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

cap/db/schema.cds

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -583,8 +583,8 @@ entity Episode : cuid, managed {
583583
season_number : Integer;
584584
episode_number: Integer;
585585
air_date : Date;
586-
director : String(255);
587-
writer : String(255);
586+
director : String;
587+
writer : String;
588588
runtime : Integer; // minutes
589589
timeline : String(50); // e.g. "19 BBY"
590590
}

0 commit comments

Comments
 (0)