20 lines
531 B
Python
20 lines
531 B
Python
|
# Generated by Django 4.1.6 on 2023-02-10 22:57
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
import django.db.models.deletion
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('core', '0054_assetrestriction_webhook_id_alter_assetgroup_allowed'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AddField(
|
||
|
model_name='strategy',
|
||
|
name='asset_group',
|
||
|
field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.PROTECT, to='core.assetgroup'),
|
||
|
),
|
||
|
]
|