Changeset 41 for veekun/trunk/script/gallery.sql
- Timestamp:
- 03/09/07 01:13:10 (3 years ago)
- Files:
-
- 1 modified
-
veekun/trunk/script/gallery.sql (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
veekun/trunk/script/gallery.sql
r1 r41 3 3 -- Host: localhost Database: pokedex 4 4 -- ------------------------------------------------------ 5 -- Server version 5.0.2 2-community-nt5 -- Server version 5.0.27-community-nt 6 6 7 7 /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; … … 17 17 18 18 -- 19 -- Table structure for table ` gallerykeywords`19 -- Table structure for table `creators` 20 20 -- 21 21 22 DROP TABLE IF EXISTS gallerykeywords;23 CREATE TABLE gallerykeywords (22 DROP TABLE IF EXISTS creators; 23 CREATE TABLE creators ( 24 24 id int(10) unsigned NOT NULL auto_increment, 25 keyword varchar(48) NOT NULL default '',26 category varchar(48) NOT NULL default '',27 description tinytext NOT NULL,25 userid int(10) unsigned default NULL, 26 `name` varchar(20) default NULL, 27 itemct int(10) unsigned NOT NULL default '0', 28 28 PRIMARY KEY (id), 29 UNIQUE KEY keyword (keyword)29 UNIQUE KEY userid (userid) 30 30 ) ENGINE=MyISAM DEFAULT CHARSET=latin1; 31 31 … … 55 55 56 56 -- 57 -- Table structure for table `gallerykeywords` 58 -- 59 60 DROP TABLE IF EXISTS gallerykeywords; 61 CREATE TABLE gallerykeywords ( 62 id int(10) unsigned NOT NULL auto_increment, 63 keyword varchar(48) NOT NULL default '', 64 category varchar(48) NOT NULL default '', 65 description tinytext NOT NULL, 66 PRIMARY KEY (id), 67 UNIQUE KEY keyword (keyword) 68 ) ENGINE=MyISAM DEFAULT CHARSET=latin1; 69 70 -- 57 71 -- Table structure for table `itemkeywords` 58 72 -- … … 66 80 KEY keywordid (keywordid) 67 81 ) ENGINE=MyISAM DEFAULT CHARSET=latin1; 68 69 --70 -- Table structure for table `creators`71 --72 73 DROP TABLE IF EXISTS creators;74 CREATE TABLE creators (75 id int(10) unsigned NOT NULL auto_increment,76 userid int(10) unsigned default NULL,77 `name` varchar(20) default NULL,78 itemct int(10) unsigned NOT NULL default '0',79 PRIMARY KEY (id),80 UNIQUE KEY userid (userid)81 ) ENGINE=MyISAM DEFAULT CHARSET=latin1;82 82 /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; 83 83 … … 90 90 /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; 91 91 92 -- Dump completed on 2007-03-09 7:00:26
