]> git.mxchange.org Git - friendica.git/commitdiff
final db updates after testing
authorZach Prezkuta <fermion@gmx.com>
Thu, 5 Jul 2012 20:31:19 +0000 (14:31 -0600)
committerZach Prezkuta <fermion@gmx.com>
Thu, 5 Jul 2012 20:31:19 +0000 (14:31 -0600)
boot.php
database.sql
update.php

index 239c09ee242f1aecc88be2b4d09836396838df50..fdd2ccd8c53b50b858a46d774e6fc9ab0851b562 100644 (file)
--- a/boot.php
+++ b/boot.php
@@ -12,7 +12,7 @@ require_once('include/cache.php');
 define ( 'FRIENDICA_PLATFORM',     'Friendica');
 define ( 'FRIENDICA_VERSION',      '3.0.1394' );
 define ( 'DFRN_PROTOCOL_VERSION',  '2.23'    );
-define ( 'DB_UPDATE_VERSION',      1151      );
+define ( 'DB_UPDATE_VERSION',      1152      );
 
 define ( 'EOL',                    "<br />\r\n"     );
 define ( 'ATOM_TIME',              'Y-m-d\TH:i:s\Z' );
index b3b8c3a060a0b54432d8121c174bd16af501624d..bd57d9fdde494a09f975c8d410b14f4e6dde6bd3 100644 (file)
@@ -598,6 +598,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`
 --
index 37dce341f435f049b6c5ed151a449ecbb176dd81..28fe469f19c7b39f2117b7fd63cf682f2784a89f 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 
-define( 'UPDATE_VERSION' , 1151 );
+define( 'UPDATE_VERSION' , 1152 );
 
 /**
  *