class CreateActionSets

Public Instance Methods

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

    t.timestamps
  end
end