Fix nil error in migration (#7680)
Under rare circumstances the user record could have already been deleted before...
This commit is contained in:
		
					parent
					
						
							
								ad40bf5e0c
							
						
					
				
			
			
				commit
				
					
						c61c4565ab
					
				
			
		
					 1 changed files with 1 additions and 1 deletions
				
			
		|  | @ -49,7 +49,7 @@ class FixAccountsUniqueIndex < ActiveRecord::Migration[5.2] | ||||||
|         # are always either going to be local or not local, so only |         # are always either going to be local or not local, so only | ||||||
|         # one check is needed. Since we cannot support two users with |         # one check is needed. Since we cannot support two users with | ||||||
|         # the same username locally, one has to go. 😢 |         # the same username locally, one has to go. 😢 | ||||||
|         other_account.user.destroy |         other_account.user&.destroy | ||||||
|       end |       end | ||||||
| 
 | 
 | ||||||
|       other_account.destroy |       other_account.destroy | ||||||
|  |  | ||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue