30 lines
1000 B
Python
30 lines
1000 B
Python
# Generated by Django 2.0.6 on 2019-03-06 14:47
|
|
|
|
from django.db import migrations, models
|
|
import django_extensions.db.fields
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
initial = True
|
|
|
|
dependencies = [
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='Project',
|
|
fields=[
|
|
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
|
('title', models.CharField(max_length=255, verbose_name='title')),
|
|
('description', models.TextField(blank=True, null=True, verbose_name='description')),
|
|
('slug', django_extensions.db.fields.AutoSlugField(blank=True, editable=False, populate_from='title', verbose_name='slug')),
|
|
('objectives', models.TextField(blank=True)),
|
|
('appearance', models.CharField(blank=True, max_length=255)),
|
|
],
|
|
options={
|
|
'abstract': False,
|
|
},
|
|
),
|
|
]
|