Fixed typo

This commit is contained in:
Simon
2018-07-19 16:20:07 -04:00
parent e533bc9825
commit c6826734c3
3 changed files with 7 additions and 7 deletions

View File

@@ -156,21 +156,21 @@ create table subtitles
)
;
create table chatper
create table chapter
(
id serial not null
constraint chatper_pkey
constraint chapter_pkey
primary key,
start_time integer not null,
end_time integer not null,
title text,
video_id text not null
constraint chatper_video_id_fk
constraint chapter_video_id_fk
references video
)
;
create unique index chatper_id_uindex
on chatper (id)
create unique index chapter_id_uindex
on chapter (id)
;