Compare commits
No commits in common. 'f78ac867c129ba4798bf7531c51c22d8d2122f68' and '6280168f3275c000ff8fca74a4211c91fc675bb8' have entirely different histories.
f78ac867c1
...
6280168f32
6 changed files with 4 additions and 91 deletions
@ -1,29 +0,0 @@ |
|||||||
# Generated by Django 4.2.7 on 2025-06-12 01:41 |
|
||||||
|
|
||||||
from django.db import migrations, models |
|
||||||
|
|
||||||
|
|
||||||
class Migration(migrations.Migration): |
|
||||||
|
|
||||||
dependencies = [ |
|
||||||
('product', '0002_prditem_update_at'), |
|
||||||
] |
|
||||||
|
|
||||||
operations = [ |
|
||||||
migrations.CreateModel( |
|
||||||
name='PrdHistory', |
|
||||||
fields=[ |
|
||||||
('id', models.AutoField(primary_key=True, serialize=False)), |
|
||||||
('prd_id', models.IntegerField(help_text='对应版本的id', verbose_name='对应版本的id')), |
|
||||||
('history_doc_link', models.TextField(help_text='历史产品原型链接', verbose_name='历史产品原型链接')), |
|
||||||
('update_at', models.DateField(help_text='最后更新日期', verbose_name='最后更新日期')), |
|
||||||
('is_delete', models.BooleanField(default=False, help_text='删除状态', verbose_name='删除状态')), |
|
||||||
], |
|
||||||
options={ |
|
||||||
'verbose_name': '历史文档列表', |
|
||||||
'verbose_name_plural': '历史文档列表', |
|
||||||
'db_table': 'prd_history', |
|
||||||
'db_table_comment': '历史文档列表', |
|
||||||
}, |
|
||||||
), |
|
||||||
] |
|
Loading…
Reference in new issue