view db/migrate/052_add_changes_revision.rb @ 1423:40e82f170353 biblio_alt_search_auth

small adjustments to text box size.
author luisf <luis.figueira@eecs.qmul.ac.uk>
date Wed, 02 Oct 2013 16:47:03 +0100
parents 513646585e45
children
line wrap: on
line source
class AddChangesRevision < ActiveRecord::Migration
  def self.up
    add_column :changes, :revision, :string
  end

  def self.down
    remove_column :changes, :revision
  end
end