mirror of
https://github.com/php/web-doc.git
synced 2025-08-13 14:40:31 +00:00

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
22 lines
615 B
SQL
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
|
|
);
|
|
|