about summary refs log tree commit diff stats
path: root/db/migrate/20190313123149_add_start_and_end_dates_to_game.rb
blob: 7803344406dff21c40695eedfdfcaed1fa46833c (plain) (blame)
1
2
3
4
5
6
7
8
class AddStartAndEndDatesToGame < ActiveRecord::Migration[5.2]
  def change
    change_table :games do |c|
      c.date :started_on
      c.date :finished_on
    end
  end
end