<?xml version="1.0" encoding="utf-8"?>
<feed xml:lang="en" xmlns="http://www.w3.org/2005/Atom"><title>Recent changes to support-requests</title><link href="https://sourceforge.net/p/tphpguestbook/support-requests/" rel="alternate"/><link href="https://sourceforge.net/p/tphpguestbook/support-requests/feed.atom" rel="self"/><id>https://sourceforge.net/p/tphpguestbook/support-requests/</id><updated>2004-05-27T20:54:05Z</updated><subtitle>Recent changes to support-requests</subtitle><entry><title>schema files</title><link href="https://sourceforge.net/p/tphpguestbook/support-requests/1/" rel="alternate"/><published>2004-05-27T20:54:05Z</published><updated>2004-05-27T20:54:05Z</updated><author><name>Anonymous</name><uri>https://sourceforge.net/u/userid-None/</uri></author><id>https://sourceforge.netc46d5286506b6e750f545b14903195084545e07a</id><summary type="html">&lt;div class="markdown_content"&gt;&lt;p&gt;Here is a schema that works for postgres.  However, the&lt;br /&gt;
php scripts required some serious hacking.  Most&lt;br /&gt;
notably, postgres field names are case insensitive. &lt;br /&gt;
So, every time DB_FETCHMODE_ASSOC was used, row keys&lt;br /&gt;
had to be converted to lower case.  The install script&lt;br /&gt;
is also totally busted.&lt;/p&gt;
&lt;p&gt;-- Table structure for table 'phpGB_Posts'&lt;br /&gt;
--&lt;br /&gt;
CREATE TABLE phpGB_Posts (&lt;br /&gt;
PostId SERIAL NOT NULL PRIMARY KEY,&lt;br /&gt;
Name varchar(255) NOT NULL default '',&lt;br /&gt;
EMail varchar(255) NOT NULL default '',&lt;br /&gt;
Website varchar(255) default '',&lt;br /&gt;
Post text NOT NULL,&lt;br /&gt;
Date timestamp NOT NULL,&lt;br /&gt;
IP varchar(15) NOT NULL default ''&lt;br /&gt;
);&lt;/p&gt;
&lt;p&gt;--&lt;br /&gt;
-- Table structure for table 'phpGB_Smilies'&lt;br /&gt;
--&lt;br /&gt;
CREATE TABLE phpGB_Smilies (&lt;br /&gt;
SmiliesId smallint NOT NULL PRIMARY KEY,&lt;br /&gt;
Code varchar(50) NOT NULL,&lt;br /&gt;
Description varchar(100) NOT NULL,&lt;br /&gt;
Filename varchar(50) NOT NULL&lt;br /&gt;
);&lt;/p&gt;
&lt;p&gt;--&lt;br /&gt;
-- Table structure for table 'phpGB_Config'&lt;br /&gt;
--&lt;br /&gt;
CREATE TABLE phpGB_Config (&lt;br /&gt;
ConfigName varchar(255) NOT NULL PRIMARY KEY,&lt;br /&gt;
ConfigValue varchar(255) NOT NULL&lt;br /&gt;
);&lt;br /&gt;
--&lt;br /&gt;
-- Table structure for table 'phpGB_Users'&lt;br /&gt;
--&lt;br /&gt;
CREATE TABLE phpGB_Users (&lt;br /&gt;
UserId serial NOT NULL PRIMARY KEY,&lt;br /&gt;
Username varchar(50) NOT NULL,&lt;br /&gt;
Password varchar(50) NOT NULL&lt;br /&gt;
);&lt;/p&gt;&lt;/div&gt;</summary></entry></feed>