22 lines
630 B
Python
22 lines
630 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
# Generated by Django 1.11.9 on 2018-01-20 20:54
|
||
|
from __future__ import unicode_literals
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
import django.db.models.deletion
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('figurines', '0003_auto_20180116_1756'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AddField(
|
||
|
model_name='figurine',
|
||
|
name='kind',
|
||
|
field=models.CharField(choices=[('character', 'Character'), ('vehicle', 'Vehicle'), ('world', 'World'), ('gadget', 'Gadget')], default='character', max_length=30, verbose_name='kind'),
|
||
|
),
|
||
|
]
|