diff options
author | Zach Prezkuta <fermion@gmx.com> | 2012-07-05 14:31:19 -0600 |
---|---|---|
committer | Zach Prezkuta <fermion@gmx.com> | 2012-07-05 14:31:19 -0600 |
commit | 2edfc3b53902d1f666d239fbcb88492c57d81ca7 (patch) | |
tree | cb47173ca91bfa4d7c4500d726cd420f00bd8bfd /database.sql | |
parent | e0607e0238b52ed47c2330792694f4a72af0dba4 (diff) | |
download | volse-hubzilla-2edfc3b53902d1f666d239fbcb88492c57d81ca7.tar.gz volse-hubzilla-2edfc3b53902d1f666d239fbcb88492c57d81ca7.tar.bz2 volse-hubzilla-2edfc3b53902d1f666d239fbcb88492c57d81ca7.zip |
final db updates after testing
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` -- |