kopia lustrzana https://gitlab.com/marnanel/chapeau
21 wiersze
521 B
Python
21 wiersze
521 B
Python
# Generated by Django 2.0.6 on 2018-08-19 15:09
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('things_for_testing', '0001_initial'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='ThingArticle',
|
|
fields=[
|
|
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
|
('title', models.CharField(max_length=256)),
|
|
],
|
|
),
|
|
]
|