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

@@ -0,0 +1,10 @@
class AddMoreCommentaryToUploads < ActiveRecord::Migration[6.0]
def change
add_column :uploads, :translated_commentary_title, :text
add_column :uploads, :translated_commentary_desc, :text
add_column :uploads, :add_commentary_tag, :boolean
add_column :uploads, :add_commentary_request_tag, :boolean
add_column :uploads, :add_commentary_check_tag, :boolean
add_column :uploads, :add_partial_commentary_tag, :boolean
end
end