clarion/db/migrate/20140810174338_create_events.rb
Petko Bordjukov 89de56d94d Add an initial implementation of the Event model
Initial implementation & specs of the Event model and its children
2014-08-10 21:18:41 +03:00

21 lines
539 B
Ruby

class CreateEvents < ActiveRecord::Migration
def change
create_table :events do |t|
t.string :title, null: false
t.string :subtitle
t.string :type
t.integer :length, null: false, default: 45
t.string :language, null: false, default: 'bg_BG'
t.integer :state
t.text :abstract, null: false
t.text :description, null: false
t.text :notes
t.references :track, index: true
t.references :user, index: true
t.timestamps
end
add_index :events, :type
end
end