#!/usr/bin/perl
use Postgres;

# Run this if you are upgrading from v1.0b or v1.1b to drop
# the un-used config table.  Not needed if you are upgrading from
# v1.2b or higher, or if this is a new installation.
#

$user = $ENV{USER};
$conn=db_connect("$user") or die "Cannot connect to $user\'s database.
 Make sure that your administrator has installed and configured PostgreSQL
 on this machine for you.";
$sql="drop table config;";
$query=$conn->execute($sql);
print ("Depreciated Table Dropped.\n");

