Merge master, resolve schema conflicts
This commit is contained in:
commit
04154020a5
42 changed files with 757 additions and 131 deletions
|
|
@ -2,7 +2,7 @@ class AddVisibleToTickets < ActiveRecord::Migration[5.0]
|
|||
def up
|
||||
add_column :tickets, :visible, :boolean, default: true
|
||||
Ticket.reset_column_information
|
||||
Ticket.update_all(visible: true) # rubocop:disable Rails/SkipsModelValidations
|
||||
Ticket.update_all(visible: true)
|
||||
end
|
||||
|
||||
def down
|
||||
|
|
|
|||
|
|
@ -0,0 +1,5 @@
|
|||
class AddSubmissionTextToEvents < ActiveRecord::Migration[5.2]
|
||||
def change
|
||||
add_column :events, :submission_text, :text
|
||||
end
|
||||
end
|
||||
|
|
@ -258,6 +258,7 @@ ActiveRecord::Schema.define(version: 2021_03_03_052026) do
|
|||
t.integer "max_attendees"
|
||||
t.integer "comments_count", default: 0, null: false
|
||||
t.text "committee_review"
|
||||
t.text "submission_text"
|
||||
end
|
||||
|
||||
create_table "events_registrations", force: :cascade do |t|
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue