Add, user modify
All checks were successful
Build And Test / build-and-push (push) Successful in 2m49s
All checks were successful
Build And Test / build-and-push (push) Successful in 2m49s
This commit is contained in:
18
users/migrations/0002_customuser_desc.py
Normal file
18
users/migrations/0002_customuser_desc.py
Normal file
@ -0,0 +1,18 @@
|
||||
# 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='설명'),
|
||||
),
|
||||
]
|
Reference in New Issue
Block a user