view db/migrate/20101123161346_create_ssamr_user_details.rb @ 889:e124b1258c0b bug_83

Close obsolete branch bug_83
author Chris Cannam
date Sat, 19 Feb 2011 09:58:02 +0000
parents 1d072f771b4d
children
line wrap: on
line source
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