diff options
author | cweiske <cweiske@b3834d28-1941-0410-a4f8-b48e95affb8f> | 2009-10-26 06:38:42 +0000 |
---|---|---|
committer | cweiske <cweiske@b3834d28-1941-0410-a4f8-b48e95affb8f> | 2009-10-26 06:38:42 +0000 |
commit | 12ff7497fa2139653e6cb6b8c10905ce0324f4e7 (patch) | |
tree | 0c7ab411306d980c09a818b476f6e2454bcd9911 | |
parent | 8d16356f756795f8d881ff8305e2a1ec83c47069 (diff) | |
download | semanticscuttle-12ff7497fa2139653e6cb6b8c10905ce0324f4e7.tar.gz semanticscuttle-12ff7497fa2139653e6cb6b8c10905ce0324f4e7.tar.bz2 |
add bVoting to table definition file
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@427 b3834d28-1941-0410-a4f8-b48e95affb8f
-rw-r--r-- | data/tables.sql | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/data/tables.sql b/data/tables.sql index eed7269..fab7162 100644 --- a/data/tables.sql +++ b/data/tables.sql @@ -1,5 +1,5 @@ -- Semantic Scuttle - Tables creation SQL script --- ! Dont forget to change table names according to $tableprefix defined in config.inc.php ! +-- ! Dont forget to change table names according to $tableprefix defined in config.php ! -- -- Table structure for table `sc_bookmarks` @@ -17,6 +17,7 @@ CREATE TABLE `sc_bookmarks` ( `bDescription` text default NULL, `bPrivateNote` text default NULL, `bHash` varchar(32) NOT NULL default '', + `bVoting` int(11) NOT NULL, PRIMARY KEY (`bId`), KEY `sc_bookmarks_usd` (`uId`,`bStatus`,`bDatetime`), KEY `sc_bookmarks_hui` (`bHash`,`uId`,`bId`), |