Files
php-web-doc/table_create.sql
Gabor Hojtsy 15d9aacd21 Adding complete copy of CVS files which
used to run under doc.keliglia.com. Most of the
code needs to be cleaned up (revcheck, includes),
plus a lot needs to be replaced (RFC with pepr?).
Some of the supplemental files surely need to be
removed after reorganization (subsite specific CSS,
etc).

Watch out for keliglia.com specific path values in
some scripts and also French wording in them...

Volunteers are welcome to help in cleanup / further
development
2004-08-04 17:14:56 +00:00

22 lines
615 B
SQL

# Create table comments for type of comments on the web site
#
# section get the general name of the section for the comment (example : RFC for RFC comments)
# doc & file are present for RFC section, perhaps there can be use for others sections
# user is the user who post comment
# date is the date who the comment was insert into the table comment
# title is the title for this comment
# note is the content of this comment
# Yannick TORRES <yannick@php.net>
CREATE TABLE comments (
id INTEGER PRIMARY KEY,
section TEXT,
doc TEXT,
file TEXT,
user TEXT,
date TIMESTAMP,
title TEXT,
note TEXT
);