OpenProject is the leading open source project management software.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
openproject/db/migrate/20220622151721_drop_project...

13 lines
287 B

class DropProjectAssociations < ActiveRecord::Migration[7.0]
def change
drop_table :project_associations do |t|
t.belongs_to :project_a, type: :int
t.belongs_to :project_b, type: :int
t.column :description, :text
t.timestamps null: true
end
end
end