1234567891011121314151617181920 |
- # -*- coding: utf-8 -*-
- # Generated by Django 1.11.5 on 2021-03-07 08:08
- from __future__ import unicode_literals
- from django.db import migrations, models
- class Migration(migrations.Migration):
- dependencies = [
- ('checkIn', '0005_luckydraw'),
- ]
- operations = [
- migrations.AddField(
- model_name='item',
- name='createTime',
- field=models.DateTimeField(auto_now_add=True, null=True),
- ),
- ]
|