view db/migrate/100_add_changesets_user_id.rb @ 1441:8d721cac2925 biblio_alt_search_auth

Addresses Bug #763 - patched the User class adding a new scope (name_like), that doesn't use the email address to search for a user.
author luisf <luis.figueira@eecs.qmul.ac.uk>
date Fri, 11 Oct 2013 13:49:02 +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