annotate .svn/pristine/8c/8cb30d9e4bb25d408d3abfe2d628a22f8364a025.svn-base @ 1416:96ffcd574b96 biblio_alt_search_auth

No longer using the link_to helpers to generate the links on the render_authorship_link helper function.
author luisf <luis.figueira@eecs.qmul.ac.uk>
date Tue, 01 Oct 2013 15:07:23 +0100
parents 038ba2d95de8
children
rev   line source
Chris@1296 1 class AddAuthSourcesFilter < ActiveRecord::Migration
Chris@1296 2 def self.up
Chris@1296 3 add_column :auth_sources, :filter, :string
Chris@1296 4 end
Chris@1296 5
Chris@1296 6 def self.down
Chris@1296 7 remove_column :auth_sources, :filter
Chris@1296 8 end
Chris@1296 9 end