mirror of
https://github.com/lemeow125/DRF_Template.git
synced 2024-11-17 12:19:24 +08:00
24 lines
651 B
Python
24 lines
651 B
Python
|
# Generated by Django 5.0.6 on 2024-05-10 06:37
|
||
|
|
||
|
import django.utils.timezone
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
initial = True
|
||
|
|
||
|
dependencies = [
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.CreateModel(
|
||
|
name='UserGroup',
|
||
|
fields=[
|
||
|
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
||
|
('name', models.CharField(max_length=128)),
|
||
|
('date_created', models.DateTimeField(default=django.utils.timezone.now, editable=False)),
|
||
|
],
|
||
|
),
|
||
|
]
|