mirror of
https://github.com/simon987/yt-metadata.git
synced 2025-04-04 08:23:00 +00:00
Fixed typo
This commit is contained in:
parent
e533bc9825
commit
c6826734c3
@ -17,4 +17,4 @@ youtube-dl -v --print-traffic --restrict-filename --write-description --write-in
|
||||
* Run `import.py`
|
||||
|
||||
### Schema:
|
||||

|
||||

|
||||
|
@ -148,7 +148,7 @@ def create_format(cursor, **kwargs):
|
||||
|
||||
def create_chapter(cursor, video_id, start_time, end_time, title):
|
||||
|
||||
cursor.execute('INSERT INTO chatper (start_time, end_time, title, video_id) VALUES (%s,%s,%s,%s) '
|
||||
cursor.execute('INSERT INTO chapter (start_time, end_time, title, video_id) VALUES (%s,%s,%s,%s) '
|
||||
'ON CONFLICT DO NOTHING',
|
||||
(start_time, end_time, title, video_id))
|
||||
print("Created chapter for " + video_id)
|
||||
|
10
schema.sql
10
schema.sql
@ -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)
|
||||
;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user