summaryrefslogtreecommitdiff
path: root/db/migrate/20140304015110_create_games.rb
blob: fc54709bdaeb04d6aa2050c6e443fbbd1e393a68 (plain)
1
2
3
4
5
6
7
8
9
class CreateGames < ActiveRecord::Migration
  def change
    create_table :games do |t|
      t.text :name

      t.timestamps
    end
  end
end