All checks were successful
Django Backend Validation / build (debian-latest, 3.10) (push) Successful in 12s
Django Backend Validation / build (debian-latest, 3.11) (push) Successful in 12s
Django Backend Validation / build (debian-latest, 3.12) (push) Successful in 13s
Django Backend Validation / build (ubuntu-latest, 3.10) (push) Successful in 12s
Django Backend Validation / build (ubuntu-latest, 3.11) (push) Successful in 12s
Django Backend Validation / build (ubuntu-latest, 3.12) (push) Successful in 13s
Signed-off-by: Jochen Mehlich <coding@jochenmehlich.de>
24 lines
582 B
Python
24 lines
582 B
Python
# Generated by Django 5.1 on 2024-09-03 14:28
|
|
|
|
import uuid
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
initial = True
|
|
|
|
dependencies = [
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='quote_person_group',
|
|
fields=[
|
|
('label', models.CharField(max_length=255)),
|
|
('id', models.UUIDField(default=uuid.uuid4, editable=False, primary_key=True, serialize=False, unique=True)),
|
|
('description', models.TextField(null=True)),
|
|
],
|
|
),
|
|
]
|