tracks/db/migrate/031_add_default_context_to_project.rb
2019-12-18 09:49:57 -06:00

10 lines
232 B
Ruby

# typed: false
class AddDefaultContextToProject < ActiveRecord::Migration[5.2]
def self.up
add_column :projects, :default_context_id, :integer
end
def self.down
remove_column :projects, :default_context_id
end
end