mirror of
https://github.com/stashapp/stash.git
synced 2025-12-12 03:12:24 +01:00
8 lines
305 B
SQL
8 lines
305 B
SQL
CREATE TABLE `scene_captions` (
|
|
`scene_id` integer,
|
|
`language_code` varchar(255) NOT NULL,
|
|
`filename` varchar(255) NOT NULL,
|
|
`caption_type` varchar(255) NOT NULL,
|
|
primary key (`scene_id`, `language_code`, `caption_type`),
|
|
foreign key(`scene_id`) references `scenes`(`id`) on delete CASCADE
|
|
);
|