rosa-build/db/migrate/20111122232244_add_ancestry...

11 lines
212 B
Ruby
Raw Normal View History

2012-01-30 20:39:34 +00:00
# -*- encoding : utf-8 -*-
class AddAncestryToProjects < ActiveRecord::Migration
def self.up
add_column :projects, :ancestry, :string
end
def self.down
remove_column :projects, :ancestry
end
end