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

11 lines
212 B
Ruby

# -*- 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