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

10 lines
185 B
Ruby
Raw Normal View History

class AddAncestryToProjects < ActiveRecord::Migration
def self.up
add_column :projects, :ancestry, :string
end
def self.down
remove_column :projects, :ancestry
end
end