diff options
author | friendica <info@friendica.com> | 2012-07-05 16:06:43 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-07-05 16:06:43 -0700 |
commit | 8af78079cbabe530554950ac241b24bbdcaf2cb7 (patch) | |
tree | b745750faaefbdca15c90a7b740de717ac8c17ea /database.sql | |
parent | 9951071b5b3c5d1589f804275b31c42b0c4f7e5b (diff) | |
parent | fe984963ed5d5411cd7e7d169ad24bf4ab2e5419 (diff) | |
download | volse-hubzilla-8af78079cbabe530554950ac241b24bbdcaf2cb7.tar.gz volse-hubzilla-8af78079cbabe530554950ac241b24bbdcaf2cb7.tar.bz2 volse-hubzilla-8af78079cbabe530554950ac241b24bbdcaf2cb7.zip |
Merge https://github.com/friendica/friendica into pull
Diffstat (limited to 'database.sql')
-rw-r--r-- | database.sql | 13 |
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` -- |