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
This commit is contained in:
some weird guy
2023-10-16 15:22:41 -07:00
parent d49ce565ee
commit e5c99e0248
26 changed files with 942 additions and 1070 deletions
@@ -0,0 +1,33 @@
# 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',
),
]