mirror of
https://github.com/seanmorley15/AdventureLog.git
synced 2025-07-22 22:39:36 +02:00
feat: update Immich integration migrations and enhance localization strings for user feedback
This commit is contained in:
parent
386014db92
commit
eea87e59a5
14 changed files with 275 additions and 99 deletions
|
@ -1,7 +1,7 @@
|
|||
# Generated by Django 5.0.8 on 2024-12-31 15:02
|
||||
# Generated by Django 5.0.8 on 2025-01-02 23:16
|
||||
|
||||
import uuid
|
||||
import django.db.models.deletion
|
||||
import uuid
|
||||
from django.conf import settings
|
||||
from django.db import migrations, models
|
||||
|
||||
|
@ -18,11 +18,10 @@ class Migration(migrations.Migration):
|
|||
migrations.CreateModel(
|
||||
name='ImmichIntegration',
|
||||
fields=[
|
||||
('id', models.UUIDField(default=uuid.uuid4, editable=False, primary_key=True, serialize=False, unique=True)),
|
||||
('server_url', models.CharField(max_length=255)),
|
||||
('api_key', models.CharField(max_length=255)),
|
||||
('id', models.UUIDField(default=uuid.uuid4, editable=False, primary_key=True, serialize=False, unique=True)),
|
||||
('user', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to=settings.AUTH_USER_MODEL)),
|
||||
],
|
||||
),
|
||||
]
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue