Changeset 1605

Show
Ignore:
Timestamp:
06/17/08 08:02:42 (6 months ago)
Author:
misja
Message:

Fixes #370, commentwall postgres patch - thanks bettse

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • devel

    • Property svn:ignore changed from
      data
      config.php
      to
      data
      config.php
      .cache
      .settings
      .project
  • devel/mod/commentwall/postgres7.sql

    r1196 r1605  
    1 CREATE TABLE `prefix_commentwall` ( 
    2   `ident` SERIAL PRIMARY KEY, 
    3    
    4   `wallowner` int(11) NOT NULL, 
    5    
    6   `comment_owner` int(11) NOT NULL, 
    7   `content` text NOT NULL, 
    8    
    9   `posted` int(11) NOT NULL, 
    10    
    11   PRIMARY KEY  (`ident`) 
     1CREATE TABLE prefix_commentwall ( 
     2  ident SERIAL PRIMARY KEY, 
     3 
     4  wallowner integer NOT NULL, 
     5 
     6  comment_owner integer NOT NULL, 
     7  content text NOT NULL, 
     8 
     9  posted integer NOT NULL 
     10 
    1211);