Update SQL and remove migration points

This commit is contained in:
Omar Roth 2018-09-04 09:57:40 -05:00
parent 53732cdcab
commit 40028e1462
2 changed files with 3 additions and 7 deletions

View File

@ -20,6 +20,7 @@ CREATE TABLE public.videos
allowed_regions text[] COLLATE pg_catalog."default",
is_family_friendly boolean,
genre text COLLATE pg_catalog."default",
genre_url text COLLATE pg_catalog."default",
CONSTRAINT videos_pkey PRIMARY KEY (id)
)
WITH (

View File

@ -376,13 +376,11 @@ def get_video(id, db, refresh = true)
video = fetch_video(id)
video_array = video.to_a
# MIGRATION POINT
video_array = video_array[0..-2]
args = arg_array(video_array[1..-1], 2)
db.exec("UPDATE videos SET (info,updated,title,views,likes,dislikes,wilson_score,\
published,description,language,author,ucid, allowed_regions, is_family_friendly, genre)\
published,description,language,author,ucid, allowed_regions, is_family_friendly,\
genre, genre_url)\
= (#{args}) WHERE id = $1", video_array)
rescue ex
db.exec("DELETE FROM videos * WHERE id = $1", id)
@ -393,9 +391,6 @@ def get_video(id, db, refresh = true)
video = fetch_video(id)
video_array = video.to_a
# MIGRATION POINT
video_array = video_array[0..-2]
args = arg_array(video_array)
db.exec("INSERT INTO videos VALUES (#{args}) ON CONFLICT (id) DO NOTHING", video_array)