home *** CD-ROM | disk | FTP | other *** search
/ Practical Internet Web Designer 89 / PIWD89.iso / pc / CONTENTS / DEVELOPER / TUTORIAL_FILES / Pages90-91 / cms.sql < prev    next >
Text File  |  2003-10-29  |  1KB  |  45 lines

  1. -- MySQL dump 9.09
  2. --
  3. -- Host: localhost    Database: cms
  4. ---------------------------------------------------------
  5. -- Server version    4.0.15-nt
  6.  
  7. --
  8. -- Table structure for table `tblcat`
  9. --
  10.  
  11. CREATE TABLE tblcat (
  12.   catId int(11) NOT NULL auto_increment,
  13.   catName varchar(100) default NULL,
  14.   catDesc text,
  15.   PRIMARY KEY  (catId)
  16. ) TYPE=MyISAM;
  17.  
  18. --
  19. -- Dumping data for table `tblcat`
  20. --
  21.  
  22. INSERT INTO tblcat VALUES (1,'test one','This is a testing category');
  23. INSERT INTO tblcat VALUES (2,'test two','Another testing category');
  24.  
  25. --
  26. -- Table structure for table `tblcontent`
  27. --
  28.  
  29. CREATE TABLE tblcontent (
  30.   contentId int(11) NOT NULL auto_increment,
  31.   contentTitle varchar(255) default NULL,
  32.   contentText text,
  33.   catId int(11) default NULL,
  34.   PRIMARY KEY  (contentId)
  35. ) TYPE=MyISAM;
  36.  
  37. --
  38. -- Dumping data for table `tblcontent`
  39. --
  40.  
  41. INSERT INTO tblcontent VALUES (1,'Item One','This is some dummy content',1);
  42. INSERT INTO tblcontent VALUES (2,'Item Two','This is the second item of dummy content',1);
  43. INSERT INTO tblcontent VALUES (3,'Item Three','This is the third item of dummy content',2);
  44.  
  45.