mirror of
				https://github.com/zulip/zulip.git
				synced 2025-11-04 05:53:43 +00:00 
			
		
		
		
	This commit renames the 'UserHotspot' model to 'OnboardingStep'. Also, it renames the 'hotspot' field in that model to 'onboarding_step'.
		
			
				
	
	
		
			38 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			38 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
# Generated by Django 4.2.7 on 2023-12-01 06:55
 | 
						|
 | 
						|
from django.db import migrations
 | 
						|
 | 
						|
from zerver.lib.migrate import rename_indexes_constraints
 | 
						|
 | 
						|
 | 
						|
class Migration(migrations.Migration):
 | 
						|
    dependencies = [
 | 
						|
        ("zerver", "0492_realm_push_notifications_enabled_and_more"),
 | 
						|
    ]
 | 
						|
 | 
						|
    operations = [
 | 
						|
        migrations.SeparateDatabaseAndState(
 | 
						|
            database_operations=[
 | 
						|
                migrations.RenameField(
 | 
						|
                    model_name="UserHotspot", old_name="hotspot", new_name="onboarding_step"
 | 
						|
                ),
 | 
						|
                migrations.RunPython(
 | 
						|
                    rename_indexes_constraints(
 | 
						|
                        "zerver_userhotspot",
 | 
						|
                        "zerver_onboardingstep",
 | 
						|
                    ),
 | 
						|
                    reverse_code=rename_indexes_constraints(
 | 
						|
                        "zerver_onboardingstep",
 | 
						|
                        "zerver_userhotspot",
 | 
						|
                    ),
 | 
						|
                ),
 | 
						|
            ],
 | 
						|
            state_operations=[
 | 
						|
                migrations.RenameField(
 | 
						|
                    model_name="UserHotspot", old_name="hotspot", new_name="onboarding_step"
 | 
						|
                ),
 | 
						|
                migrations.RenameModel(old_name="UserHotspot", new_name="OnboardingStep"),
 | 
						|
            ],
 | 
						|
        ),
 | 
						|
    ]
 |