Reset Migrations
All checks were successful
CVE Scan & Docker Build / security-scan (push) Successful in 3m8s
Build & Deploy Docs / build-and-deploy (push) Successful in 1m12s
CVE Scan & Docker Build / build-and-push (push) Successful in 2m24s

This commit is contained in:
2026-05-23 07:14:23 -04:00
parent 5bf9fa89cf
commit 735eb9de1a
6 changed files with 21 additions and 77 deletions

View File

@@ -1,4 +1,4 @@
# Generated by Django 5.2.13 on 2026-05-10 15:31
# Generated by Django 5.2.13 on 2026-05-23 11:12
from django.db import migrations, models
@@ -26,11 +26,11 @@ class Migration(migrations.Migration):
('concepts_extracted', models.PositiveIntegerField(default=0)),
('embedding_model', models.CharField(blank=True, max_length=100)),
('content_hash', models.CharField(blank=True, db_index=True, max_length=64)),
('source', models.CharField(default='', max_length=50)),
('source', models.CharField(default='', max_length=100)),
('source_ref', models.CharField(blank=True, db_index=True, max_length=200)),
('s3_key', models.CharField(max_length=500)),
('title', models.CharField(blank=True, max_length=500)),
('file_type', models.CharField(blank=True, max_length=50)),
('file_type', models.CharField(blank=True, max_length=100)),
('file_size', models.PositiveBigIntegerField(default=0)),
('collection_uid', models.CharField(blank=True, max_length=64)),
('created_at', models.DateTimeField(auto_now_add=True)),

View File

@@ -1,21 +0,0 @@
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("library", "0001_initial"),
]
operations = [
migrations.AlterField(
model_name="ingestjob",
name="source",
field=models.CharField(default="", max_length=100),
),
migrations.AlterField(
model_name="ingestjob",
name="file_type",
field=models.CharField(blank=True, max_length=100),
),
]