|
12345678910111213141516171819202122232425262728 |
- # Generated by Django 4.1.9 on 2023-07-17 23:26
-
- from django.db import migrations, models
-
-
- class Migration(migrations.Migration):
-
- initial = True
-
- dependencies = [
- ]
-
- operations = [
- migrations.CreateModel(
- name='Account',
- fields=[
- ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
- ('name', models.CharField(max_length=100)),
- ('address', models.CharField(max_length=200)),
- ('phone_number', models.CharField(max_length=20)),
- ('email', models.EmailField(max_length=254)),
- ('created_at', models.DateTimeField(auto_now_add=True)),
- ('total_revenue', models.DecimalField(decimal_places=2, default=0, max_digits=10)),
- ('total_expenses', models.DecimalField(decimal_places=2, default=0, max_digits=10)),
- ('total_investments', models.DecimalField(decimal_places=2, default=0, max_digits=10)),
- ],
- ),
- ]
|