mirror of
https://github.com/Mistake35/Cedar-Django.git
synced 2026-07-17 16:11:14 +10:00
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
34 lines
932 B
Python
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',
|
|
),
|
|
]
|