aboutsummaryrefslogtreecommitdiffstats
path: root/database.sql
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2012-07-05 15:57:28 -0700
committerfriendica <info@friendica.com>2012-07-05 15:57:28 -0700
commit10336651ba12db4e62737c1fbd6d63680217ff38 (patch)
treecb47173ca91bfa4d7c4500d726cd420f00bd8bfd /database.sql
parent360c35e438f4ecb6a60cefde8ab8b0e3f6f0c57f (diff)
parent2edfc3b53902d1f666d239fbcb88492c57d81ca7 (diff)
downloadvolse-hubzilla-10336651ba12db4e62737c1fbd6d63680217ff38.tar.gz
volse-hubzilla-10336651ba12db4e62737c1fbd6d63680217ff38.tar.bz2
volse-hubzilla-10336651ba12db4e62737c1fbd6d63680217ff38.zip
Merge pull request #374 from fermionic/diaspora-prevent-fcontact-race-conditions
Prevent fcontact race conditions
Diffstat (limited to 'database.sql')
-rw-r--r--database.sql13
1 files changed, 13 insertions, 0 deletions
diff --git a/database.sql b/database.sql
index b3b8c3a06..bd57d9fdd 100644
--- a/database.sql
+++ b/database.sql
@@ -599,6 +599,19 @@ CREATE TABLE IF NOT EXISTS `item_id` (
-- --------------------------------------------------------
--
+-- Table structure for table `locks`
+--
+
+CREATE TABLE `locks` (
+ `id` int(11) NOT NULL AUTO_INCREMENT,
+ `name` char(128) NOT NULL,
+ `locked` tinyint(1) NOT NULL DEFAULT '0',
+ PRIMARY KEY (`id`)
+) ENGINE=MyISAM DEFAULT CHARSET=utf8;
+
+-- --------------------------------------------------------
+
+--
-- Table structure for table `mail`
--