27 lines
933 B
Python
27 lines
933 B
Python
|
# Generated by Django 4.1.3 on 2022-11-25 17:39
|
||
|
|
||
|
import django.db.models.deletion
|
||
|
from django.conf import settings
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('core', '0027_strategy_trailing_stop_loss_percent_and_more'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.CreateModel(
|
||
|
name='TradingTime',
|
||
|
fields=[
|
||
|
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
||
|
('name', models.CharField(blank=True, max_length=255, null=True)),
|
||
|
('description', models.TextField(blank=True, null=True)),
|
||
|
('start_ts', models.DateTimeField()),
|
||
|
('end_ts', models.DateTimeField()),
|
||
|
('user', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to=settings.AUTH_USER_MODEL)),
|
||
|
],
|
||
|
),
|
||
|
]
|