mirror of
https://github.com/RoboSats/robosats.git
synced 2024-12-13 19:06:26 +00:00
20 lines
441 B
Python
20 lines
441 B
Python
|
# Generated by Django 5.0.6 on 2024-06-29 14:07
|
||
|
|
||
|
import api.models.order
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('api', '0047_notification'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AlterField(
|
||
|
model_name='order',
|
||
|
name='reference',
|
||
|
field=models.UUIDField(default=api.models.order.custom_uuid, editable=False),
|
||
|
),
|
||
|
]
|