Sha256: d8321f8c5094d8a47a073630ba3562a70140254a9377b1c715a1e84d6395b537
Contents?: true
Size: 393 Bytes
Versions: 23
Compression:
Stored size: 393 Bytes
Contents
class CreateDraftsMigration < ActiveRecord::Migration def self.up create_table(:drafts) do |t| t.timestamps t.integer(:player_id) t.integer(:team_id) t.date(:date) t.integer(:round) t.integer(:pick) t.integer(:overall) t.string(:college, :limit => 100) t.text(:notes) end end def self.down drop_table(:drafts) end end
Version data entries
23 entries across 23 versions & 1 rubygems