Changeset 1605
- Timestamp:
- 06/17/08 08:02:42 (6 months ago)
- Files:
-
- devel (modified) (1 prop)
- devel/mod/commentwall/postgres7.sql (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
devel
- Property svn:ignore changed from
data
config.php
to
data
config.php
.cache
.settings
.project
- Property svn:ignore changed from
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`) 1 CREATE 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 12 11 );
