socialforge/db/migrate/20170315103005_create_outpu...

13 lines
217 B
Ruby

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