Skip to content

Commit

Permalink
imageverify table
Browse files Browse the repository at this point in the history
  • Loading branch information
wfraser committed Mar 25, 2006
1 parent 263c185 commit baac254
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions structure.sql
Expand Up @@ -20,6 +20,13 @@ CREATE TABLE blogs (
UNIQUE KEY name (name)
) TYPE=MyISAM;

DROP TABLE IF EXISTS imageverify;
CREATE TABLE imageverify (
id varchar(32) NOT NULL default '',
text varchar(4) NOT NULL default '',
PRIMARY KEY (id)
) TYPE=MyISAM;

DROP TABLE IF EXISTS replies;
CREATE TABLE replies (
pid int(8) unsigned NOT NULL auto_increment,
Expand Down

0 comments on commit baac254

Please sign in to comment.