annotate db/migrate/20101123161346_create_ssamr_user_details.rb @ 1051:ef882e222003 bibplugin_bibtex

Changing the way the bibtex is parsed: uses link_to_remote instead of remote_form_for; using RJS; created tab helper (still not implemented correctly in terms of views
author luisf <luis.figueira@eecs.qmul.ac.uk>
date Fri, 16 Nov 2012 19:05:01 +0000
parents 1d072f771b4d
children
rev   line source
luisf@56 1 class CreateSsamrUserDetails < ActiveRecord::Migration
luisf@56 2 def self.up
luisf@56 3 create_table :ssamr_user_details do |t|
luisf@56 4 t.integer :user_id
luisf@56 5 t.text :description
luisf@56 6 t.text :university
luisf@56 7 end
luisf@56 8 end
luisf@56 9
luisf@56 10 def self.down
luisf@56 11 drop_table :ssamr_user_details
luisf@56 12 end
luisf@56 13
luisf@56 14 end