13 lines
226 B
Ruby
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
|