Sha256: 554c29df67cbaf5306529d1ff867f401c1d99a9423430c691ed387529541e2ff
Contents?: true
Size: 469 Bytes
Versions: 19
Compression:
Stored size: 469 Bytes
Contents
class CreateDrafts < Sequel::Migration def up create_table(:drafts) do primary_key(:id) DateTime(:created_at) DateTime(:updated_at) foreign_key(:player_id, :table => :players) foreign_key(:team_id, :table => :teams) Date(:date) Integer(:round) Integer(:pick) Integer(:overall) String(:college, :limit => 100) String(:notes, :text=>true) end end def down drop_table(:drafts) end end
Version data entries
19 entries across 19 versions & 1 rubygems