20140528193835_create_institutions_table.rb 219 Bytes
class CreateInstitutionsTable < ActiveRecord::Migration
  def self.up
    create_table :institutions do |t|
      t.string :name

      t.timestamps
    end
  end

  def self.down
    drop_table :institutions
  end
end