diff options
| author | mensonge <mensonge@b3834d28-1941-0410-a4f8-b48e95affb8f> | 2008-04-21 08:44:44 +0000 | 
|---|---|---|
| committer | mensonge <mensonge@b3834d28-1941-0410-a4f8-b48e95affb8f> | 2008-04-21 08:44:44 +0000 | 
| commit | 4de56ed6623c57c1c767be192ffe2af5926fe598 (patch) | |
| tree | f1ad8e46567874cbdaefdcf873cf9dee4af32355 /tables.sql | |
| parent | 81478ceba0c1bbdaa43679b72ec6d4fd603f5d17 (diff) | |
| download | semanticscuttle-4de56ed6623c57c1c767be192ffe2af5926fe598.tar.gz semanticscuttle-4de56ed6623c57c1c767be192ffe2af5926fe598.tar.bz2 | |
Refactoring: rename sc_tags into sc_bookmarks2tags (and services, codes...)
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@116 b3834d28-1941-0410-a4f8-b48e95affb8f
Diffstat (limited to 'tables.sql')
| -rw-r--r-- | tables.sql | 20 | 
1 files changed, 18 insertions, 2 deletions
| @@ -1,5 +1,6 @@  -- Semantice Scuttle - Tables creation SQL script  -- ! Dont forget to change table names according to $tableprefix defined in config.inc.php ! +  --   -- Table structure for table `sc_bookmarks`  --  @@ -28,12 +29,27 @@ CREATE TABLE `sc_bookmarks` (  --   CREATE TABLE `sc_tags` ( +  `tId` int(11) NOT NULL auto_increment, +  `tag` varchar(32) NOT NULL default '', +  `uId` int(11) NOT NULL default '0', +  `tDescription` varchar(255) default NULL, +  PRIMARY KEY  (`id`), +  UNIQUE KEY `sc_tags_tag_uId` (`tag`, `uId`) +); + +-- -------------------------------------------------------- + +--  +-- Table structure for table `sc_bookmarks2tags` +--  + +CREATE TABLE `sc_bookmarks2tags` (    `id` int(11) NOT NULL auto_increment,    `bId` int(11) NOT NULL default '0',    `tag` varchar(32) NOT NULL default '',    PRIMARY KEY  (`id`), -  UNIQUE KEY `sc_tags_tag_bId` (`tag`,`bId`), -  KEY `sc_tags_bId` (`bId`) +  UNIQUE KEY `sc_bookmarks2tags_tag_bId` (`tag`,`bId`), +  KEY `sc_bookmarks2tags_bId` (`bId`)  );  -- -------------------------------------------------------- | 
