You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
499 B
21 lines
499 B
class CreateConferences < ActiveRecord::Migration
|
|
def change
|
|
create_table :conferences do |t|
|
|
t.string :title
|
|
t.string :slug
|
|
t.datetime :start_date
|
|
t.datetime :end_date
|
|
t.text :info
|
|
t.string :poster
|
|
t.string :cover
|
|
t.boolean :workshop_schedule_published
|
|
t.boolean :registration_open
|
|
t.boolean :meals_provided
|
|
t.text :meal_info
|
|
t.text :travel_info
|
|
t.integer :conference_type_id
|
|
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|
|
|