socialforge/db/migrate/20170310072101_add_status_t...

6 lines
127 B
Ruby

class AddStatusToGame < ActiveRecord::Migration
def change
add_column :games, :status, :integer, :default => 0
end
end