From 5ab44aa0e5042629c05daad64ccb88e42ae089b4 Mon Sep 17 00:00:00 2001
From: jengo <jengo@alumni.egroupware.org>
Date: Wed, 15 Nov 2000 07:51:25 +0000
Subject: [PATCH] Upgrade the create tables scripts for a new release

---
 setup/sql/pgsql_droptables.inc.php | 5 +++++
 setup/sql/pgsql_newtables.inc.php  | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

diff --git a/setup/sql/pgsql_droptables.inc.php b/setup/sql/pgsql_droptables.inc.php
index db5e258773..8453a2f50a 100644
--- a/setup/sql/pgsql_droptables.inc.php
+++ b/setup/sql/pgsql_droptables.inc.php
@@ -35,4 +35,9 @@
   $db->query("DROP TABLE newsgroups");
   $db->query("DROP TABLE users_newsgroups");
   $db->query("DROP TABLE lang");
+  $db->query("drop sequence news_msg_con_seq");
+  $db->query("DROP TABLE news_msg");
+  $db->query("DROP TABLE languages");
+  $db->query("drop sequence categories_cat_id_seq");
+  $db->query("DROP TABLE categories");
 ?>
\ No newline at end of file
diff --git a/setup/sql/pgsql_newtables.inc.php b/setup/sql/pgsql_newtables.inc.php
index 786b00ff72..01ba3e851b 100644
--- a/setup/sql/pgsql_newtables.inc.php
+++ b/setup/sql/pgsql_newtables.inc.php
@@ -252,7 +252,7 @@
   $db->query($sql);
 
 
-  $currentver = "0.9.3pre10";
+  $currentver = "0.9.3";
   update_version_table();
 
 ?>