0002_auto_20171104_1030.py 528 B

1234567891011121314151617181920212223
  1. # -*- coding: utf-8 -*-
  2. # Generated by Django 1.11.5 on 2017-11-04 02:30
  3. from __future__ import unicode_literals
  4. from django.db import migrations, models
  5. class Migration(migrations.Migration):
  6. dependencies = [
  7. ('checkIn', '0001_initial'),
  8. ]
  9. operations = [
  10. migrations.DeleteModel(
  11. name='ItemSelection',
  12. ),
  13. migrations.AddField(
  14. model_name='item',
  15. name='itemSelection',
  16. field=models.TextField(blank=True, null=True),
  17. ),
  18. ]