socialforge/db/migrate/20170309062850_create_game_...

13 lines
226 B
Ruby

class CreateGameOutputs < ActiveRecord::Migration
def change
create_table :game_outputs do |t|
t.integer :code
t.integer :game_id
t.text :msg
t.text :out_put
t.timestamps
end
end
end