7 lines
310 B
SQL
7 lines
310 B
SQL
CREATE TABLE IF NOT EXISTS `shoutbox` (
|
|
`id` int(5) NOT NULL AUTO_INCREMENT,
|
|
`date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
|
`user` varchar(25) NOT NULL DEFAULT 'anonymous',
|
|
`message` varchar(255) NOT NULL DEFAULT '',
|
|
PRIMARY KEY (`id`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=3 ; |