Files
PyRIGS/RIGS/migrations/0036_profile_is_approved.py
FreneticScribbler 479977ef58 CHANGE: New user signups now require admin approval
Given that I intend to reveal much more data to new users this seems necessary...
2020-01-11 18:18:08 +00:00

20 lines
470 B
Python

# Generated by Django 2.0.13 on 2020-01-10 14:52
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('RIGS', '0035_auto_20191124_1319'),
]
operations = [
migrations.AddField(
model_name='profile',
name='is_approved',
# Approve existing profiles automatically, new ones default false.
field=models.BooleanField(default=True),
),
]