parent
371909c9bf
commit
456a4af8d5
9 changed files with 142 additions and 14 deletions
@ -0,0 +1,22 @@ |
||||
# Generated by Django 4.2.7 on 2024-06-07 03:15 |
||||
|
||||
from django.db import migrations, models |
||||
|
||||
|
||||
class Migration(migrations.Migration): |
||||
|
||||
dependencies = [ |
||||
('dspt_api', '0005_alter_ecapiparams_value'), |
||||
] |
||||
|
||||
operations = [ |
||||
migrations.RenameModel( |
||||
old_name='CinemaIds', |
||||
new_name='EcCinemaIds', |
||||
), |
||||
migrations.AddField( |
||||
model_name='ecapigroup', |
||||
name='type', |
||||
field=models.CharField(default='', max_length=20, verbose_name='会员非会员'), |
||||
), |
||||
] |
@ -0,0 +1,22 @@ |
||||
# Generated by Django 4.2.7 on 2024-06-07 03:18 |
||||
|
||||
from django.db import migrations, models |
||||
|
||||
|
||||
class Migration(migrations.Migration): |
||||
|
||||
dependencies = [ |
||||
('dspt_api', '0006_rename_cinemaids_eccinemaids_ecapigroup_type'), |
||||
] |
||||
|
||||
operations = [ |
||||
migrations.RemoveField( |
||||
model_name='ecapigroup', |
||||
name='order', |
||||
), |
||||
migrations.AlterField( |
||||
model_name='ecapigroup', |
||||
name='api_id', |
||||
field=models.CharField(max_length=2000, verbose_name='接口id'), |
||||
), |
||||
] |
@ -0,0 +1,18 @@ |
||||
# Generated by Django 4.2.7 on 2024-07-19 02:23 |
||||
|
||||
from django.db import migrations |
||||
|
||||
|
||||
class Migration(migrations.Migration): |
||||
|
||||
dependencies = [ |
||||
('dspt_api', '0007_remove_ecapigroup_order_alter_ecapigroup_api_id'), |
||||
] |
||||
|
||||
operations = [ |
||||
migrations.RenameField( |
||||
model_name='ecapi', |
||||
old_name='desc', |
||||
new_name='comment', |
||||
), |
||||
] |
@ -0,0 +1,18 @@ |
||||
# Generated by Django 4.2.7 on 2024-07-19 02:24 |
||||
|
||||
from django.db import migrations |
||||
|
||||
|
||||
class Migration(migrations.Migration): |
||||
|
||||
dependencies = [ |
||||
('dspt_api', '0008_rename_desc_ecapi_comment'), |
||||
] |
||||
|
||||
operations = [ |
||||
migrations.RenameField( |
||||
model_name='ecapi', |
||||
old_name='comment', |
||||
new_name='description', |
||||
), |
||||
] |
@ -0,0 +1,18 @@ |
||||
# Generated by Django 4.2.7 on 2024-07-19 02:25 |
||||
|
||||
from django.db import migrations |
||||
|
||||
|
||||
class Migration(migrations.Migration): |
||||
|
||||
dependencies = [ |
||||
('dspt_api', '0009_rename_comment_ecapi_description'), |
||||
] |
||||
|
||||
operations = [ |
||||
migrations.RenameField( |
||||
model_name='ecapiparams', |
||||
old_name='desc', |
||||
new_name='description', |
||||
), |
||||
] |
Loading…
Reference in new issue