Sha256: efb2807334b01f027637249c6b8b0d425b0e30f67719541599d1eff0487a111d
Contents?: true
Size: 756 Bytes
Versions: 5
Compression:
Stored size: 756 Bytes
Contents
class CreateTeamsMigration < ActiveRecord::Migration def self.up create_table :teams do |t| t.timestamps t.integer :league_id t.integer :division_id t.string :name, :limit => 50, :null => false t.string :logo_image_url, :limit => 255 t.string :manager, :limit => 100, :null => false t.string :ballpark, :limit => 100 t.string :mascot, :limit => 100 t.integer :founded t.integer :wins t.integer :losses t.float :win_percentage end add_index :teams, :division_id add_index :teams, :league_id add_index :teams, :name add_index :teams, :manager add_index :teams, :ballpark add_index :teams, :mascot end def self.down drop_table :teams end end
Version data entries
5 entries across 5 versions & 1 rubygems