view .svn/pristine/c8/c85d4812fb3cf039aab988b037732f423e054ebb.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 038ba2d95de8
children
line wrap: on
line source
class AddTrackersFieldsBits < ActiveRecord::Migration
  def self.up
    add_column :trackers, :fields_bits, :integer, :default => 0
  end

  def self.down
    remove_column :trackers, :fields_bits
  end
end