You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
408 B
13 lines
408 B
3 years ago
|
ALTER TABLE items ADD comment text NULL;
|
||
|
|
||
|
CREATE TABLE events (
|
||
|
eventid int(11) NOT NULL auto_increment,
|
||
|
userid int(11) default NULL,
|
||
|
description varchar(100) NOT NULL default '',
|
||
|
eventdate date NOT NULL default '0000-00-00',
|
||
|
recurring tinyint(1) NOT NULL default '0',
|
||
|
PRIMARY KEY (eventid)
|
||
|
);
|
||
|
|
||
|
INSERT INTO events(userid,description,eventdate,recurring) VALUES(NULL,'Christmas','2000-12-25',1);
|