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/20210519141244_remove_reply...

6 lines
244 B

class RemoveReplyFromMessageJournalizing < ActiveRecord::Migration[6.1]
def change
remove_column :message_journals, :last_reply_id, :integer
remove_column :message_journals, :replies_count, :integer, default: 0, null: false
end
end