Some Migration?

I dunno. Git is telling me this changed but I don’t think it did.
This commit is contained in:
Zane Adickes 2015-04-06 00:30:23 -04:00
parent 9a255298fc
commit be211d7f39

View file

@ -0,0 +1,40 @@
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import models, migrations
class Migration(migrations.Migration):
dependencies = [
]
operations = [
migrations.CreateModel(
name='Language',
fields=[
('id', models.AutoField(verbose_name='ID', serialize=False, auto_created=True, primary_key=True)),
('iso639', models.CharField(max_length=2)),
('iso3166', models.CharField(max_length=2)),
('name', models.CharField(max_length=10)),
('official', models.BooleanField()),
('order', models.IntegerField()),
],
options={
},
bases=(models.Model,),
),
migrations.CreateModel(
name='LanguageName',
fields=[
('id', models.AutoField(verbose_name='ID', serialize=False, auto_created=True, primary_key=True)),
('local_language_id', models.IntegerField()),
('name', models.CharField(max_length=30)),
('language_id', models.IntegerField()),
],
options={
'abstract': False,
},
bases=(models.Model,),
),
]