view db/migrate/053_add_changes_branch.rb @ 186:011f2ec6018f cannam-pre-20110113-merge

Remove unwanted file
author Chris Cannam
date Thu, 03 Feb 2011 15:34:42 +0000
parents 513646585e45
children
line wrap: on
line source
class AddChangesBranch < ActiveRecord::Migration
  def self.up
    add_column :changes, :branch, :string
  end

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