porkchopclub/porkchop

View on GitHub
db/migrate/20150525213902_create_seasons.rb

Summary

Maintainability
A
0 mins
Test Coverage
class CreateSeasons < ActiveRecord::Migration
  def change
    create_table :seasons do |t|
      t.integer :games_per_matchup
      t.datetime :finalized_at

      t.timestamps null: false
    end
  end
end