instiki/vendor/rails/railties/lib/rails_generator/generators/components/model/templates/migration.rb
2007-01-22 07:43:50 -06:00

12 lines
218 B
Ruby

class <%= migration_name %> < ActiveRecord::Migration
def self.up
create_table :<%= table_name %> do |t|
# t.column :name, :string
end
end
def self.down
drop_table :<%= table_name %>
end
end