Skip to content

Commit 79245bd

Browse files
Adiciona migrações
1 parent e22bc7c commit 79245bd

File tree

2 files changed

+35
-0
lines changed

2 files changed

+35
-0
lines changed
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Generated by Django 5.0.8 on 2025-10-20 19:41
2+
3+
from django.db import migrations, models
4+
5+
6+
class Migration(migrations.Migration):
7+
8+
dependencies = [
9+
('model_ai', '0001_initial'),
10+
]
11+
12+
operations = [
13+
migrations.AlterField(
14+
model_name='llamamodel',
15+
name='download_status',
16+
field=models.IntegerField(blank=True, choices=[(1, 'No model'), (2, 'Downloading model'), (3, 'Model downloaded'), (4, 'Download error')], default=1, verbose_name='Local model status'),
17+
),
18+
]
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Generated by Django 5.0.8 on 2025-10-20 19:41
2+
3+
from django.db import migrations
4+
5+
6+
class Migration(migrations.Migration):
7+
8+
dependencies = [
9+
('tracker', '0005_alter_xmldocumentevent_error_type'),
10+
]
11+
12+
operations = [
13+
migrations.AlterModelOptions(
14+
name='generalevent',
15+
options={'ordering': ['-created'], 'verbose_name': 'General Event', 'verbose_name_plural': 'General Events'},
16+
),
17+
]

0 commit comments

Comments
 (0)