tracks/db/migrate/031_add_default_context_to_project.rb
2008-05-20 21:28:26 +01:00

9 lines
212 B
Ruby

class AddDefaultContextToProject < ActiveRecord::Migration
def self.up
add_column :projects, :default_context_id, :integer
end
def self.down
remove_column :projects, :default_context_id
end
end