Pascal Dreissen
2016-07-08 f1193b43f4c9fd132741d30f03f0b35841011989
commit | author | age
6149e1 1 /*
T 2 Copyright (c) 2007-2009, Till Brehm, projektfarm Gmbh
3 All rights reserved.
4
5 Redistribution and use in source and binary forms, with or without modification,
6 are permitted provided that the following conditions are met:
7
8     * Redistributions of source code must retain the above copyright notice,
9       this list of conditions and the following disclaimer.
10     * Redistributions in binary form must reproduce the above copyright notice,
11       this list of conditions and the following disclaimer in the documentation
12       and/or other materials provided with the distribution.
13     * Neither the name of ISPConfig nor the names of its contributors
14       may be used to endorse or promote products derived from this software without
15       specific prior written permission.
16
17 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
18 ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
19 WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20 IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
21 INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
22 BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
24 OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
25 NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
26 EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */
28
29 -- 
30 -- These SQL commands will be executed before the ISPConfig update is performed.
31 --
32
33 SET FOREIGN_KEY_CHECKS = 0;
34
35 DROP TABLE IF EXISTS `billing_invoice`;
36 DROP TABLE IF EXISTS `billing_product`;
37 DROP TABLE IF EXISTS `billing_service`;
38 DROP TABLE IF EXISTS `billing_service_class`;
39 DROP TABLE IF EXISTS `billing_tax`;
40 DROP TABLE IF EXISTS `client_address_book`;
23a904 41 -- DROP TABLE IF EXISTS `domain`;
6149e1 42 DROP TABLE IF EXISTS `domain_handle`;
T 43 DROP TABLE IF EXISTS `domain_provider`;
44 DROP TABLE IF EXISTS `domain_tld`;
45
46 SET FOREIGN_KEY_CHECKS = 1;