annotate .svn/pristine/8c/8cb30d9e4bb25d408d3abfe2d628a22f8364a025.svn-base @ 1408:b09744f35f76 biblio_alt_search_auth

Fixed the initial state of the Save/Edit buttons.
author luisf <luis.figueira@eecs.qmul.ac.uk>
date Tue, 01 Oct 2013 12:08:09 +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