Mercurial > hg > soundsoftware-site
view .svn/pristine/6b/6bbafbe405df07af73d1843fdf80d06a981e814b.svn-base @ 1368:987e71e73116 bibliography_testing
Setup of testing framework for the bibliography plugin.
author | luisf <luis.figueira@eecs.qmul.ac.uk> |
---|---|
date | Tue, 20 Aug 2013 18:00:06 +0100 |
parents | cbb26bc654de |
children |
line wrap: on
line source
class AddCustomFieldsVisible < ActiveRecord::Migration def self.up add_column :custom_fields, :visible, :boolean, :null => false, :default => true CustomField.update_all("visible = #{CustomField.connection.quoted_true}") end def self.down remove_column :custom_fields, :visible end end