view db/migrate/100_add_changesets_user_id.rb @ 1380:fa92d13876d0 luisf

Authorship Edit/Save buttons now working properly in the publication#new view.
author luisf <luis.figueira@eecs.qmul.ac.uk>
date Sat, 31 Aug 2013 18:36:57 +0100
parents 513646585e45
children
line wrap: on
line source
class AddChangesetsUserId < ActiveRecord::Migration
  def self.up
    add_column :changesets, :user_id, :integer, :default => nil
  end

  def self.down
    remove_column :changesets, :user_id
  end
end