class CreateTeams < ActiveRecord::Migration
  def change
    create_table :teams do |t|
      t.integer :join_id
      t.string :acronym
      t.string :name
      t.string :school
      t.string :region
      t.date :founded
      t.date :joined
      t.string :logo
      t.string :note

      t.timestamps
    end
  end
end
