Mercurial > hg > soundsoftware-site
annotate db/migrate/20101216140621_create_institutions.rb @ 567:5404f7dfb4b3 feature_36
Move set_initial_author_order to before_save to avoid duplicate author creation;
Remove unwanted has-one relationship between user and publication
author | Chris Cannam <chris.cannam@soundsoftware.ac.uk> |
---|---|
date | Tue, 09 Aug 2011 14:30:22 +0100 |
parents | 596803cb34fc |
children |
rev | line source |
---|---|
luis@98 | 1 class CreateInstitutions < ActiveRecord::Migration |
luis@98 | 2 def self.up |
luis@98 | 3 create_table :institutions do |t| |
luis@98 | 4 t.string :name |
luis@98 | 5 |
luis@98 | 6 t.timestamps |
luis@98 | 7 end |
luis@98 | 8 end |
luis@98 | 9 |
luis@98 | 10 def self.down |
luis@98 | 11 drop_table :institutions |
luis@98 | 12 end |
luis@98 | 13 end |