| | 14 | |
| | 15 | |
| | 16 | '''Änderungen seit SP2:''' |
| | 17 | |
| | 18 | Mit SP2 kamen nun noch folgende Datenbank-Änderungen hinzu, die leider auch in der "update_1.0.6.0_to_2.0.0.0.sql" enthalten sind: |
| | 19 | |
| | 20 | {{{ |
| | 21 | ALTER TABLE admin_access ADD safeterms INT(1) NOT NULL DEFAULT 0; |
| | 22 | UPDATE admin_access SET safeterms = 1 WHERE customers_id = 1 LIMIT 1; |
| | 23 | UPDATE admin_access SET safeterms = 1 WHERE customers_id = 'groups' LIMIT 1; |
| | 24 | |
| | 25 | ALTER TABLE admin_access ADD easymarketing INT(1) NOT NULL DEFAULT 0; |
| | 26 | UPDATE admin_access SET easymarketing = 1 WHERE customers_id = 1 LIMIT 1; |
| | 27 | UPDATE admin_access SET easymarketing = 1 WHERE customers_id = 'groups' LIMIT 1; |
| | 28 | |
| | 29 | ALTER TABLE admin_access ADD it_recht_kanzlei INT(1) NOT NULL DEFAULT 0; |
| | 30 | UPDATE admin_access SET it_recht_kanzlei = 1 WHERE customers_id = 1 LIMIT 1; |
| | 31 | UPDATE admin_access SET it_recht_kanzlei = 1 WHERE customers_id = 'groups' LIMIT 1; |
| | 32 | |
| | 33 | ALTER TABLE admin_access ADD payone_config INT(1) NOT NULL DEFAULT 0; |
| | 34 | UPDATE admin_access SET payone_config = 1 WHERE customers_id = 1 LIMIT 1; |
| | 35 | UPDATE admin_access SET payone_config = 1 WHERE customers_id = 'groups' LIMIT 1; |
| | 36 | |
| | 37 | ALTER TABLE admin_access ADD payone_logs INT(1) NOT NULL DEFAULT 0; |
| | 38 | UPDATE admin_access SET payone_logs = 1 WHERE customers_id = 1 LIMIT 1; |
| | 39 | UPDATE admin_access SET payone_logs = 1 WHERE customers_id = 'groups' LIMIT 1; |
| | 40 | }}} |