# MySQL dump 8.14 # # Host: localhost Database: calendar #-------------------------------------------------------- # Server version 3.23.41 # # Table structure for table 'calendar_cat' #Sql120640_2 CREATE TABLE calendar_cat ( cat_id int(11) NOT NULL auto_increment, cat_name varchar(150) NOT NULL default '', PRIMARY KEY (cat_id), UNIQUE KEY cat_id (cat_id) ) TYPE=MyISAM; # # Dumping data for table 'calendar_cat' # INSERT INTO calendar_cat VALUES (1,'General'); # # Table structure for table 'events' # CREATE TABLE events ( id int(11) NOT NULL auto_increment, title varchar(255) NOT NULL default '', description text NOT NULL, url varchar(100) NOT NULL default '', email varchar(120) NOT NULL default '', cat tinyint(2) NOT NULL default '0', day tinyint(2) NOT NULL default '0', month smallint(2) NOT NULL default '0', year smallint(4) NOT NULL default '0', approved tinyint(1) NOT NULL default '0', PRIMARY KEY (id), UNIQUE KEY id (id) ) TYPE=MyISAM; # # Dumping data for table 'events' #