| 123456789101112131415161718192021222324252627282930 |
- # Generated by Django 4.1.3 on 2022-11-04 10:06
- from django.db import migrations, models
- class Migration(migrations.Migration):
- initial = True
- dependencies = []
- operations = [
- migrations.CreateModel(
- name="Income",
- fields=[
- (
- "id",
- models.BigAutoField(
- auto_created=True,
- primary_key=True,
- serialize=False,
- verbose_name="ID",
- ),
- ),
- ("date", models.DateTimeField(null=True)),
- ("source", models.CharField(max_length=150)),
- ("amount", models.DecimalField(decimal_places=2, max_digits=10)),
- ],
- ),
- ]
|