Skip to content
Snippets Groups Projects
Commit a76f4e8d authored by Dan Notestein's avatar Dan Notestein Committed by Dan Notestein
Browse files

amend! Remove hive_post_data img_url, instead extracting it from the json_metadata when it's needed

Remove hive_post_data img_url, instead extracting it from the
json_metadata when it's needed
parent e53e9080
No related branches found
No related tags found
1 merge request!842Remove hive_post_data img_url, instead extracting it from json field
......@@ -164,7 +164,7 @@ BEGIN
hpd_p.permlink,
hpd.title,
hpd.body,
hivemind_app.extract_img_url_from_json_metadata(hpd.json) as img_url,
hivemind_app.extract_img_url_from_json_metadata(hpd.json)::character varying(1024) as img_url,
hcd.category,
hp.category_id,
hp.depth,
......@@ -367,7 +367,7 @@ BEGIN
hpd_p.permlink,
hpd.title,
hpd.body,
hivemind_app.extract_img_url_from_json_metadata(hpd.json) as img_url,
hivemind_app.extract_img_url_from_json_metadata(hpd.json)::character varying(1024) as img_url,
hcd.category,
hp.category_id,
hp.depth,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment