class CreateConditionSets

Public Instance Methods

change() click to toggle source
# File db/migrate/20120328061734_create_condition_sets.rb, line 2
def change
  create_table :condition_sets do |t|
    t.string :name
    t.string :description
    t.integer :user_id

    t.timestamps
  end
end