working FileIndex and user Profile pages/settings

This commit is contained in:
JakeBreath
2026-08-03 14:13:40 -05:00
parent 85e6241ad4
commit 39e31d3980
17 changed files with 999 additions and 25 deletions
@@ -0,0 +1,20 @@
# Generated by Django 6.0.3 on 2026-08-03 18:14
import django.db.models.deletion
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('library', '0001_initial'),
('profiles', '0002_apitoken_profiles_ap_user_id_c2920d_idx'),
]
operations = [
migrations.AlterField(
model_name='userprofile',
name='avatar',
field=models.OneToOneField(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, related_name='profile', to='library.fileindex'),
),
]
@@ -0,0 +1,18 @@
# Generated by Django 6.0.3 on 2026-08-03 18:47
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('profiles', '0003_alter_userprofile_avatar'),
]
operations = [
migrations.AlterField(
model_name='userprofile',
name='bio',
field=models.CharField(blank=True, default='', max_length=1000),
),
]