mirror of
https://github.com/discourse/discourse.git
synced 2024-11-26 02:40:53 -06:00
db1d01d1a2
FEATURE: context is not emailed if we previously emailed you the post FEATURE: site setting to enable_watch_new_topics , false by default. When enables users can elect to watch everything by default FIX: Custom email subjects (x quoted you in [title], x replied to [title]) was removed, this broke email grouping. TBD, include info in footer somehow FIX: topic user specs were messy, reduce side effects
6 lines
160 B
Ruby
6 lines
160 B
Ruby
class AddWatchNewTopicsToUsers < ActiveRecord::Migration
|
|
def change
|
|
add_column :users, :watch_new_topics, :boolean, default: false, null: false
|
|
end
|
|
end
|