|
From: Javier S. <ja...@us...> - 2001-10-24 23:50:48
|
Update of /cvsroot/phpbt/phpbt/schemas In directory usw-pr-cvs1:/tmp/cvs-serv32078 Modified Files: pgsql.in Log Message: use 'database' doesn't work whith Postgres Begin must be call after create databse. Index: pgsql.in =================================================================== RCS file: /cvsroot/phpbt/phpbt/schemas/pgsql.in,v retrieving revision 1.6 retrieving revision 1.7 diff -u -r1.6 -r1.7 --- pgsql.in 2001/10/13 23:15:22 1.6 +++ pgsql.in 2001/10/24 23:50:45 1.7 @@ -1,7 +1,4 @@ -BEGIN; - - -- PostgreSQL database creation script -- If you change the database name, make sure you change the DB_DATABASE -- constant in config.php. Make sure you edit the TBL_AUTH_USER insert below. @@ -12,6 +9,9 @@ create database BugTracker; use BugTracker; + +BEGIN; + CREATE TABLE active_sessions ( sid varchar(32) NOT NULL DEFAULT '', |