mirror of
				https://github.com/zulip/zulip.git
				synced 2025-11-03 21:43:21 +00:00 
			
		
		
		
	Most of the changes here are just that we no longer need to provide a value for pointer when we create UserProfile objects.
		
			
				
	
	
		
			18 lines
		
	
	
		
			344 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			344 B
		
	
	
	
		
			Python
		
	
	
	
	
	
# Generated by Django 2.2.13 on 2020-07-03 12:53
 | 
						|
 | 
						|
from django.db import migrations
 | 
						|
 | 
						|
 | 
						|
class Migration(migrations.Migration):
 | 
						|
 | 
						|
    dependencies = [
 | 
						|
        ('zerver', '0293_update_invite_as_dict_values'),
 | 
						|
    ]
 | 
						|
 | 
						|
    operations = [
 | 
						|
        migrations.RemoveField(
 | 
						|
            model_name='userprofile',
 | 
						|
            name='pointer',
 | 
						|
        ),
 | 
						|
    ]
 |