mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 01:22:36 +08:00
30990006a9
This reduces chances of errors where consumers of strings mutate inputs and reduces memory usage of the app. Test suite passes now, but there may be some stuff left, so we will run a few sites on a branch prior to merging
18 lines
396 B
Ruby
18 lines
396 B
Ruby
# frozen_string_literal: true
|
|
|
|
class AddHasMessagesToGroups < ActiveRecord::Migration[4.2]
|
|
def up
|
|
add_column :groups, :has_messages, :boolean, default: false, null: false
|
|
|
|
execute <<SQL
|
|
UPDATE groups g SET has_messages = true
|
|
WHERE exists(SELECT group_id FROM topic_allowed_groups WHERE group_id = g.id)
|
|
SQL
|
|
|
|
end
|
|
|
|
def down
|
|
remove_column :groups, :has_messages
|
|
end
|
|
end
|