19 lines
404 B
Python
19 lines
404 B
Python
|
|
# Generated by Django 5.2.5 on 2025-08-19 11:56
|
||
|
|
|
||
|
|
from django.db import migrations, models
|
||
|
|
|
||
|
|
|
||
|
|
class Migration(migrations.Migration):
|
||
|
|
|
||
|
|
dependencies = [
|
||
|
|
('manager', '0001_initial'),
|
||
|
|
]
|
||
|
|
|
||
|
|
operations = [
|
||
|
|
migrations.AddField(
|
||
|
|
model_name='devcontainer',
|
||
|
|
name='statuscache_data',
|
||
|
|
field=models.JSONField(default=dict, editable=False),
|
||
|
|
),
|
||
|
|
]
|