Files
archived-presentations/slides/scripting/guestbook.sql
Sterling Hughes 836127b995 add the guestbook source to the slides... for the online versions, will
use emacs during presentation :)
2002-07-02 08:41:06 +00:00

9 lines
261 B
SQL

CREATE TABLE guestbook (
entry_id int(4) NOT NULL auto_increment,
name varchar(150) NOT NULL default '',
email varchar(150) NOT NULL default '',
msg text NOT NULL,
remote_host varchar(150) NOT NULL default '',
PRIMARY KEY (entry_id)
) TYPE=MyISAM;