To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.

Statistics Download as Zip
| Branch: | Tag: | Revision:

root / db / migrate / 20101123161346_create_ssamr_user_details.rb @ 1298:4f746d8966dd

History | View | Annotate | Download (269 Bytes)

1
class CreateSsamrUserDetails < ActiveRecord::Migration
2
  def self.up
3
    create_table :ssamr_user_details do |t|
4
      t.integer :user_id
5
      t.text :description 
6
      t.text :university
7
    end
8
  end
9

    
10
  def self.down
11
    drop_table :ssamr_user_details
12
  end
13
  
14
end