10 lines
202 B
Ruby
10 lines
202 B
Ruby
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
|