class CreateActions

Public Instance Methods

change() click to toggle source
# File lib/generators/templates/migrations/create_actions.rb, line 2
def change
  create_table :actions do |t|
    t.string :name
    t.string :description

    t.timestamps
  end
end