2000-11-02 10:01:06 +01:00
|
|
|
<?php
|
|
|
|
/**************************************************************************\
|
2000-11-05 07:47:24 +01:00
|
|
|
* phpGroupWare - Setup *
|
2000-11-02 10:01:06 +01:00
|
|
|
* http://www.phpgroupware.org *
|
|
|
|
* -------------------------------------------- *
|
|
|
|
* This program is free software; you can redistribute it and/or modify it *
|
|
|
|
* under the terms of the GNU General Public License as published by the *
|
|
|
|
* Free Software Foundation; either version 2 of the License, or");at your *
|
|
|
|
* option) any later version. *
|
|
|
|
\**************************************************************************/
|
|
|
|
|
2000-11-05 07:47:24 +01:00
|
|
|
/* $Id$ */
|
2000-11-02 10:01:06 +01:00
|
|
|
|
|
|
|
$db->query("DROP TABLE config");
|
|
|
|
$db->query("DROP TABLE applications");
|
|
|
|
$db->query("DROP TABLE accounts");
|
|
|
|
$db->query("DROP TABLE groups");
|
|
|
|
$db->query("DROP TABLE preferences");
|
|
|
|
$db->query("DROP TABLE sessions");
|
|
|
|
$db->query("DROP TABLE app_sessions");
|
|
|
|
$db->query("DROP TABLE access_log");
|
|
|
|
$db->query("DROP TABLE profiles");
|
|
|
|
$db->query("DROP TABLE addressbook");
|
|
|
|
$db->query("DROP TABLE todo");
|
|
|
|
$db->query("DROP TABLE webcal_entry");
|
|
|
|
$db->query("DROP TABLE webcal_entry_repeats");
|
|
|
|
$db->query("DROP TABLE webcal_entry_user");
|
|
|
|
$db->query("DROP TABLE webcal_entry_groups");
|
|
|
|
$db->query("DROP TABLE newsgroups");
|
2000-11-15 09:11:09 +01:00
|
|
|
$db->query("DROP TABLE news_msg");
|
2000-11-02 10:01:06 +01:00
|
|
|
$db->query("DROP TABLE lang");
|
2000-11-15 09:11:09 +01:00
|
|
|
$db->query("DROP TABLE languages");
|
2000-11-02 10:01:06 +01:00
|
|
|
$db->query("DROP TABLE customers");
|
|
|
|
$db->query("DROP TABLE categories");
|
2000-11-17 17:34:27 +01:00
|
|
|
$db->query("DROP TABLE notes");
|
2000-11-02 10:01:06 +01:00
|
|
|
?>
|