Initial commit from monorepo
This commit is contained in:
23
suppliers/migrations/0003_add_coordinates.py
Normal file
23
suppliers/migrations/0003_add_coordinates.py
Normal file
@@ -0,0 +1,23 @@
|
||||
# Generated by Django 5.2.9 on 2025-12-10 11:56
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('suppliers', '0002_supplier_country_code'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='supplier',
|
||||
name='latitude',
|
||||
field=models.FloatField(blank=True, null=True),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='supplier',
|
||||
name='longitude',
|
||||
field=models.FloatField(blank=True, null=True),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user