29 lines
1 KiB
Python
29 lines
1 KiB
Python
|
# Generated by Django 5.0.2 on 2024-02-28 20:03
|
||
|
|
||
|
import uuid
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('api_v1', '0002_rebrandUserInformationToProfile'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.CreateModel(
|
||
|
name='Location',
|
||
|
fields=[
|
||
|
('location_id', models.UUIDField(default=uuid.uuid4, editable=False, primary_key=True, serialize=False)),
|
||
|
('longitude', models.DecimalField(decimal_places=6, max_digits=9)),
|
||
|
('latitude', models.DecimalField(decimal_places=6, max_digits=9)),
|
||
|
('country_code', models.CharField(max_length=2)),
|
||
|
('country_name', models.CharField(max_length=50)),
|
||
|
('city', models.CharField(max_length=50)),
|
||
|
('postal_code', models.CharField(max_length=20)),
|
||
|
('street', models.CharField(max_length=50)),
|
||
|
('number', models.CharField(max_length=20)),
|
||
|
],
|
||
|
),
|
||
|
]
|