Mercurial > hg > soundsoftware-site
diff db/migrate/20101123161346_create_ssamr_user_details.rb @ 84:432bb11e0390 cannam
Merge from branch "luisf"
author | Chris Cannam |
---|---|
date | Thu, 16 Dec 2010 10:03:20 +0000 |
parents | 1d072f771b4d |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/db/migrate/20101123161346_create_ssamr_user_details.rb Thu Dec 16 10:03:20 2010 +0000 @@ -0,0 +1,14 @@ +class CreateSsamrUserDetails < ActiveRecord::Migration + def self.up + create_table :ssamr_user_details do |t| + t.integer :user_id + t.text :description + t.text :university + end + end + + def self.down + drop_table :ssamr_user_details + end + +end