Merge pull request #4054 from eileenmcnaughton/CRM-15237
[civicrm-core.git] / CRM / Upgrade / Incremental / sql / 3.3.6.mysql.tpl
CommitLineData
6a488035
TO
1-- CRM-7455
2
10824d34 3UPDATE civicrm_navigation
6a488035
TO
4 SET name = 'Grant Report Detail'
5 WHERE name LIKE 'Grant Report (Detail)';
6
10824d34 7UPDATE civicrm_navigation
6a488035
TO
8 SET name = 'Grant Report Statistics'
9 WHERE name LIKE 'Grant Report (Statistics)' OR name LIKE 'Shows statistics for grants';
10
11SELECT @weight := weight
12 FROM civicrm_navigation
13 WHERE name LIKE 'Grant Report Detail';
14
10824d34 15UPDATE civicrm_navigation
6a488035
TO
16 SET weight = @weight
17 WHERE name LIKE 'Grant Report Statistics';