diff options
Diffstat (limited to 'database/database.pgsql')
-rw-r--r-- | database/database.pgsql | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/database/database.pgsql b/database/database.pgsql index 54a1426fb..1fa3d1634 100644 --- a/database/database.pgsql +++ b/database/database.pgsql @@ -196,7 +196,17 @@ CREATE TABLE comments ( CREATE INDEX comments_nid_idx ON comments(nid); -- --- Table structre for table 'node_last_comment' +-- Table structre for table 'contact' +-- + +CREATE TABLE contact ( + subject varchar(255) NOT NULL default '', + recipients longtext NOT NULL default '', + reply longtext NOT NULL default '' +); + +-- +-- Table structre for table 'node_comment_statistics' -- CREATE TABLE node_comment_statistics ( |