| |
|
|
| from django.db import migrations, models |
|
|
|
|
| class Migration(migrations.Migration): |
|
|
| dependencies = [ |
| ('api', '0003_expenselog_amount'), |
| ] |
|
|
| operations = [ |
| migrations.CreateModel( |
| name='MilestoneJsonDataStore', |
| fields=[ |
| ('id', models.AutoField(primary_key=True, serialize=False)), |
| ('field_id', models.CharField(max_length=255, unique=True)), |
| ('json_data', models.JSONField()), |
| ('created_at', models.DateTimeField(auto_now_add=True)), |
| ('updated_at', models.DateTimeField(auto_now=True)), |
| ], |
| options={ |
| 'db_table': 'milestone_json_data_store', |
| }, |
| ), |
| ] |
|
|