Compare commits
2 Commits
6280168f32
...
f78ac867c1
Author | SHA1 | Date |
---|---|---|
|
f78ac867c1 | 4 days ago |
|
a7b2405198 | 5 days ago |
6 changed files with 91 additions and 4 deletions
@ -0,0 +1,29 @@ |
||||
# 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