File size: 791 Bytes
99d3b41
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# Generated by Django 5.2.4 on 2026-03-30 05:49

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',
            },
        ),
    ]