14 lines
336 B
Ruby
14 lines
336 B
Ruby
class CreateConferences < ActiveRecord::Migration[4.2]
|
|
def change
|
|
create_table :conferences do |t|
|
|
t.string :title, null: false
|
|
t.string :email, null: false
|
|
t.text :description, null: false
|
|
t.timestamp :start_date, null: false
|
|
t.timestamp :end_date, null: false
|
|
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|