mirror of
https://github.com/TracksApp/tracks.git
synced 2025-12-16 15:20:13 +01:00
9 lines
217 B
Ruby
9 lines
217 B
Ruby
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
|