summaryrefslogtreecommitdiff
path: root/db/migrate/20140307050029_create_game_options.rb
blob: 2f62ef78fc24a82f130ff8fb96c9d7d3b02c245f (plain)
1
2
3
4
5
6
7
8
9
10
11
class CreateGameOptions < ActiveRecord::Migration
  def change
    create_table :game_options do |t|
      t.integer :vartype
      t.string :name
      t.text :default

      t.timestamps
    end
  end
end