File size: 712 Bytes
dd4466b | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | # Generated by Django 5.2.4 on 2026-03-06 16:28
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('api', '0001_initial'),
]
operations = [
migrations.CreateModel(
name='ExpenseLog',
fields=[
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('text', models.CharField(max_length=500)),
('predicted_category', models.CharField(max_length=100)),
('confidence_score', models.FloatField()),
('created_at', models.DateTimeField(auto_now_add=True)),
],
),
]
|