socialforge/db/migrate/20170310072101_add_status_t...

6 lines
127 B
Ruby
Raw Normal View History

2017-03-10 15:41:44 +08:00
class AddStatusToGame < ActiveRecord::Migration
def change
add_column :games, :status, :integer, :default => 0
end
end