fp/services/migrations-schema/migrations/00089_create-vods_s3_files_...

10 lines
243 B
MySQL
Raw Normal View History

2024-11-05 19:48:21 +00:00
-- vods_s3_files_join table schema
CREATE TABLE api.vods_s3_files_join (
id UUID,
vod_id UUID,
s3_file UUID
);
-- roles & permissions
GRANT all ON api.vods_s3_files_join TO automation;
GRANT SELECT ON api.vods_s3_files_join TO web_anon;