24 lines
559 B
Python
24 lines
559 B
Python
|
# Generated by Django 5.1 on 2024-08-20 05:42
|
||
|
|
||
|
import uuid
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
initial = True
|
||
|
|
||
|
dependencies = [
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.CreateModel(
|
||
|
name='Test',
|
||
|
fields=[
|
||
|
('id', models.UUIDField(default=uuid.uuid4, editable=False, primary_key=True, serialize=False)),
|
||
|
('name', models.CharField(max_length=200)),
|
||
|
('description', models.CharField(max_length=200)),
|
||
|
],
|
||
|
),
|
||
|
]
|