0059_patientrecords_isdelete.py 489 B

123456789101112131415161718192021
  1. # -*- coding: utf-8 -*-
  2. # Generated by Django 1.11 on 2024-04-07 19:43
  3. from __future__ import unicode_literals
  4. from django.db import migrations, models
  5. class Migration(migrations.Migration):
  6. dependencies = [
  7. ('common', '0058_notices'),
  8. ]
  9. operations = [
  10. migrations.AddField(
  11. model_name='patientrecords',
  12. name='isdelete',
  13. field=models.SmallIntegerField(default=0, verbose_name='0/\u5426,1/\u5220\u9664'),
  14. ),
  15. ]