There are no dead nodes anymore
This commit is contained in:
		
					parent
					
						
							
								5accf11c8d
							
						
					
				
			
			
				commit
				
					
						01dc0c031c
					
				
			
		
					 4 changed files with 13 additions and 4 deletions
				
			
		| 
						 | 
				
			
			@ -34,7 +34,7 @@
 | 
			
		|||
use Friendica\Database\DBA;
 | 
			
		||||
 | 
			
		||||
if (!defined('DB_UPDATE_VERSION')) {
 | 
			
		||||
	define('DB_UPDATE_VERSION', 1317);
 | 
			
		||||
	define('DB_UPDATE_VERSION', 1318);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
return [
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -1,6 +1,6 @@
 | 
			
		|||
-- ------------------------------------------
 | 
			
		||||
-- Friendica 2019.09-dev (Dalmatian Bellflower)
 | 
			
		||||
-- DB_UPDATE_VERSION 1316
 | 
			
		||||
-- DB_UPDATE_VERSION 1318
 | 
			
		||||
-- ------------------------------------------
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -231,8 +231,7 @@ class ContactSelector
 | 
			
		|||
			''                     => L10n::t('No answer'),
 | 
			
		||||
			'Single'               => L10n::t('Single'),
 | 
			
		||||
			'Lonely'               => L10n::t('Lonely'),
 | 
			
		||||
			'Available'            => L10n::t('Available'),
 | 
			
		||||
			'Unavailable'          => L10n::t('Unavailable'),
 | 
			
		||||
			'In a relation'        => L10n::t('In a relation'),
 | 
			
		||||
			'Has crush'            => L10n::t('Has crush'),
 | 
			
		||||
			'Infatuated'           => L10n::t('Infatuated'),
 | 
			
		||||
			'Dating'               => L10n::t('Dating'),
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
							
								
								
									
										10
									
								
								update.php
									
										
									
									
									
								
							
							
						
						
									
										10
									
								
								update.php
									
										
									
									
									
								
							| 
						 | 
				
			
			@ -373,4 +373,14 @@ function update_1309()
 | 
			
		|||
function update_1315()
 | 
			
		||||
{
 | 
			
		||||
	DBA::delete('item-delivery-data', ['postopts' => '', 'inform' => '', 'queue_count' => 0, 'queue_done' => 0]);
 | 
			
		||||
	return Update::SUCCESS;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
function update_1318()
 | 
			
		||||
{
 | 
			
		||||
	DBA::update('profile', ['marital' => "In a relation"], ['marital' => "Unavailable"]);
 | 
			
		||||
	DBA::update('profile', ['marital' => "Single"], ['marital' => "Available"]);
 | 
			
		||||
 | 
			
		||||
	Worker::add(PRIORITY_LOW, 'ProfileUpdate');
 | 
			
		||||
	return Update::SUCCESS;
 | 
			
		||||
}
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue