24 lines
584 B
Python
24 lines
584 B
Python
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.11.9 on 2018-01-15 17:30
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations
|
|
from django.db import models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('games', '0009_add_help_text_for_documentation'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='platform',
|
|
name='shortname',
|
|
field=models.CharField(
|
|
default='TODO: Add shortname',
|
|
max_length=30,
|
|
verbose_name='shortname'), ),
|
|
]
|