1
0
Fork 0
dokkan-data-rails/db/migrate/20151006175442_create_super_attacks.rb

11 lines
202 B
Ruby
Raw Normal View History

2015-10-06 13:55:12 -04:00
class CreateSuperAttacks < ActiveRecord::Migration
def change
create_table :super_attacks do |t|
t.string :name
t.string :description
t.timestamps null: false
end
end
end