#
# Table structure for table 'categories'
#

#DROP TABLE categories;

CREATE TABLE categories (
  rec_id int(11) DEFAULT '0' NOT NULL auto_increment,
  path char(10) DEFAULT '' NOT NULL,
  link char(10) DEFAULT '' NOT NULL,
  name char(64) DEFAULT '' NOT NULL,
  PRIMARY KEY (rec_id)
);

