21 lines
462 B
Python
21 lines
462 B
Python
# Generated by Django 4.1.7 on 2023-02-24 13:21
|
|
|
|
import uuid
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('core', '0002_account_activemanagementpolicy_assetgroup_hook_and_more'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='user',
|
|
name='customer_id',
|
|
field=models.UUIDField(blank=True, default=uuid.uuid4, null=True),
|
|
),
|
|
]
|