aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails_generator/generators/components/scaffold_resource/templates/migration.rb
blob: e0e48865983c5d0e8dd2b21187c7b7913fe59d5c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
class <%= migration_name %> < ActiveRecord::Migration
  def self.up
    create_table :<%= table_name %> do |t|
      t.column :name,        :string
      t.column :description, :text
      t.column :created_at,  :datetime
    end
  end

  def self.down
    drop_table :<%= table_name %>
  end
end