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