You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
746 B
24 lines
746 B
5 months ago
|
# Generated by Django 5.0.6 on 2024-06-18 12:49
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('app_test', '0005_alter_fund_fund_id_alter_fund_fund_name_and_more'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.CreateModel(
|
||
|
name='RecommendedFund',
|
||
|
fields=[
|
||
|
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
||
|
('fund_code', models.CharField(max_length=6)),
|
||
|
('fund_name', models.CharField(max_length=20)),
|
||
|
('data_js', models.JSONField(default=None)),
|
||
|
('date_js', models.JSONField(default=None)),
|
||
|
],
|
||
|
),
|
||
|
]
|