# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # DataDivisions, Build 1.0, 12/11/2003 # # FileName: dbSetupSQL_savedDisplaysTable.txt # # File Description: # # SQL dump file to setup savedDisplays table (where all users' saved # # displays will be kept # # # # +-----------------------------------------------------------------------+ # # | DataDivisions - Website Statistic Visualization Software | # # | Copyright (c) 2003, Brian Willison | # # +-----------------------------------------------------------------------+ # # | The contents of this file are subject to the GNU General Public | # # | License version 2 (June 1991). This file and all its contents (incl. | # # | functions, methods, etc.) are free for general use within any | # # | community. This software is distributed with the intent to allow | # # | developers the opportunity to copy, manipulate and revamp this | # # | application in part or whole for best use cases. | # # | | # # | This software is distributed "AS-IS" with no warranties of any kind | # # | either expressed or implied. | # # | | # # | Please refer to the GPL license document for more information: | # # | (_docs/gplLicense.pdf) | # # +-----------------------------------------------------------------------+ # # | Developer, Designer, Initial Creator: | # # | Brian Willison (hide@address.com) | # # +-----------------------------------------------------------------------+ # # | Initial Download Reference: | # # | http://datadivisions.sourceforge.net | # # +-----------------------------------------------------------------------+ # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # CREATE TABLE `dataDivisions_savedDisplays` ( `username` varchar(25) NOT NULL default '', `description` mediumtext NOT NULL, `displayUrl` mediumtext NOT NULL, `timeStamp` varchar(14) NOT NULL default '', FULLTEXT KEY `desc` (`description`) ) TYPE=MyISAM COMMENT='DataDivisions: User Saved Displays';