All checks were successful
Build And Test / build-and-push (push) Successful in 2m49s
19 lines
405 B
Python
19 lines
405 B
Python
# Generated by Django 4.2.14 on 2025-05-17 13:04
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('users', '0001_initial'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='customuser',
|
|
name='desc',
|
|
field=models.TextField(blank=True, null=True, verbose_name='설명'),
|
|
),
|
|
]
|