| |
|
|
| from django.db import migrations, models |
|
|
|
|
| class Migration(migrations.Migration): |
|
|
| initial = True |
|
|
| dependencies = [ |
| ] |
|
|
| operations = [ |
| migrations.CreateModel( |
| name='UserData', |
| fields=[ |
| ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), |
| ('user_id', models.CharField(max_length=100, unique=True)), |
| ('expenses', models.JSONField(blank=True, default=dict)), |
| ('budget', models.JSONField(blank=True, default=dict)), |
| ('category', models.JSONField(blank=True, default=dict)), |
| ('user_data', models.JSONField(blank=True, default=dict)), |
| ], |
| ), |
| ] |
|
|