Mercurial > hg > soundsoftware-site
view db/migrate/20101216140621_create_institutions.rb @ 287:b369f41c7199 luisf
Merge from branch "bug_95"
author | Chris Cannam |
---|---|
date | Wed, 23 Mar 2011 11:32: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