root/devel/mod/commentwall/mysql.sql

Revision 1196, 243 bytes (checked in by icewing, 1 year ago)

Marcus Povey <marcus@dushka.co.uk>
* First basic working version of commentwall. Use test.php with
owner=uid

Line 
1 CREATE TABLE `prefix_commentwall` (
2   `ident` int(11) NOT NULL auto_increment,
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`)
12 );
Note: See TracBrowser for help on using the browser.