19 lines
603 B
Python
19 lines
603 B
Python
|
|
# Generated by Django 4.2.16 on 2025-08-02 13:46
|
||
|
|
|
||
|
|
from django.db import migrations, models
|
||
|
|
|
||
|
|
|
||
|
|
class Migration(migrations.Migration):
|
||
|
|
|
||
|
|
dependencies = [
|
||
|
|
('B_main', '0005_person_keyword1_person_keyword2_person_keyword3'),
|
||
|
|
]
|
||
|
|
|
||
|
|
operations = [
|
||
|
|
migrations.AddField(
|
||
|
|
model_name='person',
|
||
|
|
name='모든사람보기권한',
|
||
|
|
field=models.BooleanField(default=False, help_text='True인 경우 모든 사람을 볼 수 있고, False인 경우 회원가입한 사람만 볼 수 있습니다.', verbose_name='모든 사람 보기 권한'),
|
||
|
|
),
|
||
|
|
]
|