Home

mint @ab4c0e61c5e44035fc53b21288012f87ada85a4a - refs - log -
-
https://git.jolheiser.com/mint.git
Budget
mint / budget / migrations / 0001_initial.py
- raw -
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# Generated by Django 5.2.6 on 2025-09-14 21:09

from django.db import migrations, models


class Migration(migrations.Migration):

    initial = True

    dependencies = []

    operations = [
        migrations.CreateModel(
            name="Transaction",
            fields=[
                (
                    "id",
                    models.BigAutoField(
                        auto_created=True,
                        primary_key=True,
                        serialize=False,
                        verbose_name="ID",
                    ),
                ),
                ("title", models.CharField(max_length=100)),
                ("cents", models.BigIntegerField()),
                ("date", models.DateField()),
                ("recurrance", models.CharField(max_length=10)),
                ("is_income", models.BooleanField(default=False)),
            ],
        ),
    ]