0001_initial.py 805 B

123456789101112131415161718192021222324252627282930
  1. # Generated by Django 4.1.3 on 2022-11-03 14:56
  2. from django.db import migrations, models
  3. class Migration(migrations.Migration):
  4. initial = True
  5. dependencies = []
  6. operations = [
  7. migrations.CreateModel(
  8. name="Income",
  9. fields=[
  10. (
  11. "id",
  12. models.BigAutoField(
  13. auto_created=True,
  14. primary_key=True,
  15. serialize=False,
  16. verbose_name="ID",
  17. ),
  18. ),
  19. ("date", models.DateTimeField(null=True)),
  20. ("source", models.CharField(max_length=150)),
  21. ("amount", models.DecimalField(decimal_places=2, max_digits=10)),
  22. ],
  23. ),
  24. ]