1
0
Fork 0
trugul-bot/db/migrate/20150415152327_create_raids.rb

12 lines
220 B
Ruby

class CreateRaids < ActiveRecord::Migration
def change
create_table :raids do |t|
t.string :attacker
t.string :defender
t.float :soldiers
t.float :money
t.timestamps
end
end
end