| 12345678910111213141516171819202122 |
- # -*- coding: utf-8 -*-
- from __future__ import unicode_literals
- from django.db import models, migrations
- class Migration(migrations.Migration):
- dependencies = [
- ]
- operations = [
- migrations.CreateModel(
- name='Topic',
- fields=[
- ('id', models.AutoField(auto_created=True, serialize=False, verbose_name='ID', primary_key=True)),
- ('text', models.CharField(max_length=200)),
- ('date_added', models.DateTimeField(auto_now_add=True)),
- ],
- ),
- ]
|