mirror of
				https://github.com/ae-utbm/sith.git
				synced 2025-11-04 02:53:06 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
		
			538 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			538 B
		
	
	
	
		
			Python
		
	
	
	
	
	
# Generated by Django 4.2.16 on 2024-09-26 10:28
 | 
						|
 | 
						|
import phonenumber_field.modelfields
 | 
						|
from django.db import migrations
 | 
						|
 | 
						|
 | 
						|
class Migration(migrations.Migration):
 | 
						|
    dependencies = [
 | 
						|
        ("counter", "0022_alter_product_icon"),
 | 
						|
    ]
 | 
						|
 | 
						|
    operations = [
 | 
						|
        migrations.AddField(
 | 
						|
            model_name="billinginfo",
 | 
						|
            name="phone_number",
 | 
						|
            field=phonenumber_field.modelfields.PhoneNumberField(
 | 
						|
                max_length=128, null=True, region=None, verbose_name="Phone number"
 | 
						|
            ),
 | 
						|
        ),
 | 
						|
    ]
 |