forked from extern/egroupware
Inital version. identical to droptables_mysql right now
This commit is contained in:
parent
61c57db8d5
commit
cc3ae1bdac
32
setup/droptables_pgsql.inc.php
Normal file
32
setup/droptables_pgsql.inc.php
Normal file
@ -0,0 +1,32 @@
|
||||
<?php
|
||||
/**************************************************************************\
|
||||
* phpGroupWare *
|
||||
* 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. *
|
||||
\**************************************************************************/
|
||||
|
||||
/* $Id$ */
|
||||
|
||||
$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");
|
||||
$db->query("DROP TABLE users_newsgroups");
|
||||
$db->query("DROP TABLE lang");
|
||||
?>
|
Loading…
Reference in New Issue
Block a user