diff options
Diffstat (limited to 'db/migrate/20111121152220_create_conferences.rb')
-rw-r--r-- | db/migrate/20111121152220_create_conferences.rb | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/db/migrate/20111121152220_create_conferences.rb b/db/migrate/20111121152220_create_conferences.rb new file mode 100644 index 0000000..fe32ee8 --- /dev/null +++ b/db/migrate/20111121152220_create_conferences.rb @@ -0,0 +1,20 @@ +class CreateConferences < ActiveRecord::Migration + def self.up + create_table :conferences do |t| + t.string :name + t.datetime :start + t.datetime :end + t.text :description + t.string :pin + t.text :state + t.boolean :open_for_anybody + t.string :conferenceable_type + t.integer :conferenceable_id + t.timestamps + end + end + + def self.down + drop_table :conferences + end +end |