-
Jamesie Pic a rédigé
It includes latest research by Arnaud Fabre but I ended up squashing all commits and adding my own fixups in this commit. Also: - the import command is tested, - code was PEP8'ed - untested code was removed, - duplicate country Israel was removed and migration was added, - requirements were deleted in favor of proper setup.py.
Jamesie Pic a rédigéIt includes latest research by Arnaud Fabre but I ended up squashing all commits and adding my own fixups in this commit. Also: - the import command is tested, - code was PEP8'ed - untested code was removed, - duplicate country Israel was removed and migration was added, - requirements were deleted in favor of proper setup.py.
0001_initial.py 721 o
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
]
operations = [
migrations.CreateModel(
name='Country',
fields=[
('id',
models.AutoField(
verbose_name='ID',
serialize=False,
auto_created=True,
primary_key=True)),
('name',
models.CharField(
max_length=255)),
('code',
models.CharField(
max_length=2)),
],
),
]