Mercurial > hg > soundsoftware-site
view db/migrate/20101123161346_create_ssamr_user_details.rb @ 254:0c9da2b87ad6 feature_80
Naively display download "active" status in downloads page, and allow sorting by it
author | Chris Cannam <chris.cannam@soundsoftware.ac.uk> |
---|---|
date | Thu, 03 Mar 2011 18:31:22 +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