mirror of
				https://github.com/zulip/zulip.git
				synced 2025-11-04 05:53:43 +00:00 
			
		
		
		
	Since we have already added the `invite_as` field to models, we can now replace usage of `invite_as_admin` properly with its equivalent `invite_as == PreregistrationUser.INVITE_AS['REALM_ADMIN']`. Hence, also removed now redundant `invite_as`.
		
			
				
	
	
		
			20 lines
		
	
	
		
			408 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			408 B
		
	
	
	
		
			Python
		
	
	
	
	
	
# -*- coding: utf-8 -*-
 | 
						|
# Generated by Django 1.11.16 on 2018-12-30 10:07
 | 
						|
from __future__ import unicode_literals
 | 
						|
 | 
						|
from django.db import migrations
 | 
						|
 | 
						|
 | 
						|
class Migration(migrations.Migration):
 | 
						|
 | 
						|
    dependencies = [
 | 
						|
        ('zerver', '0199_userstatus'),
 | 
						|
    ]
 | 
						|
 | 
						|
    operations = [
 | 
						|
        migrations.RemoveField(
 | 
						|
            model_name='preregistrationuser',
 | 
						|
            name='invited_as_admin',
 | 
						|
        ),
 | 
						|
    ]
 |