Files
Cedar-Django/closedverse_main/migrations/0002_auto_20231016_1355.py
T
some weird guy e5c99e0248 File sharing update (requires migrations for existing databases)
There are a bunch of migration files that have been thrown into the repository. Sadly, migrating is a huge pain in the fucking ass, you may need to rollback your database or god knows what.

- did not add change logs too lazy
2023-10-16 15:22:41 -07:00

34 lines
932 B
Python

# Generated by Django 3.2.2 on 2023-10-16 20:55
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('admin', '0003_logentry_add_action_flag_choices'),
('closedverse_main', '0001_initial'),
]
operations = [
migrations.RemoveField(
model_name='userrequest',
name='user_ptr',
),
migrations.AlterModelOptions(
name='user',
options={},
),
migrations.AlterField(
model_name='user',
name='is_staff',
field=models.BooleanField(default=False, help_text="Allow this user to access the admin panel you're using right now? Don't forget to specify the permissions."),
),
migrations.DeleteModel(
name='ConversationInvite',
),
migrations.DeleteModel(
name='UserRequest',
),
]