1
0
mirror of https://github.com/php/web-php.git synced 2026-03-24 07:12:16 +01:00
Files
archived-web-php/cal.sql
2001-07-11 18:26:47 +00:00

17 lines
321 B
SQL

#drop table phpcal;
CREATE TABLE phpcal (
id int(8) NOT NULL AUTO_INCREMENT,
sdato date,
edato date,
recur char(12),
sdesc char(16) NOT NULL,
url varchar(128),
ldesc text,
tipo int(1) NOT NULL,
approved int(1) NOT NULL DEFAULT 0,
app_by char(16),
PRIMARY KEY(id),
INDEX (sdato),
INDEX (edato)
)