use creat if not exists syntax also on index entries

This commit is contained in:
lukas 2021-03-22 18:39:34 +01:00
parent 973a469410
commit fe349b1fd2

View File

@ -48,10 +48,10 @@ create table if not exists actors_videos
foreign key (video_id) references videos (movie_id) foreign key (video_id) references videos (movie_id)
); );
create index actors_videos_actor_id_index create index if not exists actors_videos_actor_id_index
on actors_videos (actor_id); on actors_videos (actor_id);
create index actors_videos_video_id_index create index if not exists actors_videos_video_id_index
on actors_videos (video_id); on actors_videos (video_id);
create table if not exists video_tags create table if not exists video_tags