comparison db/migrate/20101123161346_create_ssamr_user_details.rb @ 1484:51364c0cd58f redmine-2.4-integration

Merge from live branch. Still need to merge manually in files overridden by plugins.
author Chris Cannam
date Wed, 15 Jan 2014 09:59:14 +0000
parents 1d072f771b4d
children
comparison
equal deleted inserted replaced
1464:261b3d9a4903 1484:51364c0cd58f
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