0001_initial.py 757 B

12345678910111213141516171819202122232425262728
  1. # -*- coding: utf-8 -*-
  2. # Generated by Django 1.10 on 2017-06-04 02:10
  3. from __future__ import unicode_literals
  4. from django.db import migrations, models
  5. class Migration(migrations.Migration):
  6. initial = True
  7. dependencies = [
  8. ]
  9. operations = [
  10. migrations.CreateModel(
  11. name='Task',
  12. fields=[
  13. ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
  14. ('title', models.CharField(max_length=200)),
  15. ('created', models.DateTimeField(auto_now=True)),
  16. ('is_completed', models.BooleanField(default=False)),
  17. ],
  18. options={
  19. 'db_table': 'task',
  20. },
  21. ),
  22. ]