adding date created and date modified for comments

This commit is contained in:
toyomoyo
2006-02-27 02:06:35 +00:00
parent e03f2fec99
commit 8e24bfe7e8
7 changed files with 21 additions and 3 deletions
+3 -1
View File
@@ -72,7 +72,9 @@ CREATE TABLE prefix_data_comments (
id SERIAL PRIMARY KEY,
userid int4 NOT NULL default '0',
recordid int4 NOT NULL default '0',
content text
content text,
created integer NOT NULL default '0',
modified integer NOT NULL default '0'
);