blob: b63f134335aeb548b5529be38d725dafba2a14bf (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
class CreateGameAttributes < ActiveRecord::Migration
def change
create_table :game_attributes do |t|
t.references :game, index: true
t.text :key
t.integer :type
t.timestamps
end
end
end
|