Skip to content

Commit

Permalink
Update for RC3. Now using jQuery.
Browse files Browse the repository at this point in the history
  • Loading branch information
mcurry committed Oct 23, 2008
1 parent 664dd60 commit 5487a67
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions chats.sql
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
CREATE TABLE `chats` (
`id` int(10) unsigned NOT NULL auto_increment,
`key` varchar(45) NOT NULL default '',
`handle` varchar(20) NOT NULL default '',
`text` text NOT NULL,
`ip_address` varchar(12) NOT NULL default '',
`created` datetime NOT NULL default '0000-00-00 00:00:00',
`name` varchar(20) NOT NULL default '',
`message` text NOT NULL,
`ip_address` varchar(15) NOT NULL default '',
`created` datetime default NULL,
PRIMARY KEY (`id`),
KEY `KEY_IDX` (`key`)
);

0 comments on commit 5487a67

Please sign in to comment.