20140528193835_create_institutions_table.rb 219 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 8 9 10 11 12 13 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