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(); ?>