osem-fcy/db/migrate/20140804185823_create_audiences.rb

13 lines
278 B
Ruby
Raw Normal View History

2014-08-12 17:59:35 +02:00
class CreateAudiences < ActiveRecord::Migration
def change
create_table :audiences do |t|
t.integer :conference_id
t.date :registration_start_date
t.date :registration_end_date
t.text :registration_description
t.timestamps
end
end
end