source: trunk/_InstallationResources/omforum_migration_10097_10098_imcollab.sql @ 445

Revision 445, 448 bytes checked in by Xiping.Wang, 3 years ago (diff)

Merge changes from omcollab_GDC2 387-394,444

Line 
1--
2-- Enable the forum digest automatic subscription
3-- 
4
5UPDATE om_config
6   SET config_value= '1'
7 WHERE config_name = 'digests_enable_auto_subscriptions';
8
9--
10-- The digest type for new user is 'WEEK'
11-- 
12
13UPDATE om_config
14   SET config_value= 'WEEK'
15WHERE config_name = 'digests_user_digest_type';   
16 
17--
18-- Update user digest type as "WEEK" for all forum users
19-- 
20
21UPDATE om_users
22  SET user_digest_type ='WEEK';
Note: See TracBrowser for help on using the repository browser.