19 lines
443 B
Python
19 lines
443 B
Python
# Generated by Django 4.1.3 on 2022-12-06 19:24
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('core', '0042_trade_information'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='strategy',
|
|
name='trend_signals',
|
|
field=models.ManyToManyField(blank=True, related_name='trend_strategies', to='core.signal'),
|
|
),
|
|
]
|