view db/migrate/20101216140621_create_institutions.rb @ 262:f936ec3cb58a live

Merge from branch "feature_80"
author Chris Cannam
date Fri, 04 Mar 2011 15:06:11 +0000
parents 596803cb34fc
children
line wrap: on
line source
class CreateInstitutions < 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