You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
			
				
					24 lines
				
				609 B
			
		
		
			
		
	
	
					24 lines
				
				609 B
			| 
								 
											2 years ago
										 
									 | 
							
								# Generated by Django 4.2.4 on 2023-08-19 07:13
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								from django.conf import settings
							 | 
						||
| 
								 | 
							
								from django.db import migrations, models
							 | 
						||
| 
								 | 
							
								import django.db.models.deletion
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								class Migration(migrations.Migration):
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								    initial = True
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								    dependencies = [
							 | 
						||
| 
								 | 
							
								        migrations.swappable_dependency(settings.AUTH_USER_MODEL),
							 | 
						||
| 
								 | 
							
								        ('basic', '0001_initial'),
							 | 
						||
| 
								 | 
							
								    ]
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								    operations = [
							 | 
						||
| 
								 | 
							
								        migrations.AddField(
							 | 
						||
| 
								 | 
							
								            model_name='address',
							 | 
						||
| 
								 | 
							
								            name='user',
							 | 
						||
| 
								 | 
							
								            field=models.ForeignKey(on_delete=django.db.models.deletion.DO_NOTHING, to=settings.AUTH_USER_MODEL, verbose_name='用户'),
							 | 
						||
| 
								 | 
							
								        ),
							 | 
						||
| 
								 | 
							
								    ]
							 |