Added upload commentary enhancements

- Can now translate commentary from the upload page
- Can now add commentary tags with a checkbox
This commit is contained in:
BrokenEagle
2020-01-14 23:37:21 +00:00
parent 34c3df78d9
commit 82b621d87d
7 changed files with 68 additions and 12 deletions

View File

@@ -3021,7 +3021,13 @@ CREATE TABLE public.uploads (
artist_commentary_title text,
include_artist_commentary boolean,
context text,
referer_url text
referer_url text,
translated_commentary_title text,
translated_commentary_desc text,
add_commentary_tag boolean,
add_commentary_request_tag boolean,
add_commentary_check_tag boolean,
add_partial_commentary_tag boolean
);
@@ -7397,6 +7403,7 @@ INSERT INTO "schema_migrations" (version) VALUES
('20191117081229'),
('20191117200404'),
('20191119061018'),
('20191223032633');
('20191223032633'),
('20200114204550');