mirror of
				https://github.com/zulip/zulip.git
				synced 2025-11-03 21:43:21 +00:00 
			
		
		
		
	This model has no external references, and is among the larger tables. Migrate it to bigint.
		
			
				
	
	
		
			18 lines
		
	
	
		
			446 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			446 B
		
	
	
	
		
			Python
		
	
	
	
	
	
from django.db import migrations, models
 | 
						|
 | 
						|
 | 
						|
class Migration(migrations.Migration):
 | 
						|
    dependencies = [
 | 
						|
        ("confirmation", "0011_alter_confirmation_expiry_date"),
 | 
						|
    ]
 | 
						|
 | 
						|
    operations = [
 | 
						|
        migrations.AlterField(
 | 
						|
            model_name="confirmation",
 | 
						|
            name="id",
 | 
						|
            field=models.BigAutoField(
 | 
						|
                auto_created=True, primary_key=True, serialize=False, verbose_name="ID"
 | 
						|
            ),
 | 
						|
        ),
 | 
						|
    ]
 |