Skip to content
Snippets Groups Projects

Incorporate Tests to master branch

Merged Evili del Rio i Silvan requested to merge tdd into master
4 files
+ 46
2
Compare changes
  • Side-by-side
  • Inline
Files
4
+ 23
0
# -*- coding: utf-8 -*-
# Generated by Django 1.9.6 on 2016-05-20 10:25
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
initial = True
dependencies = [
]
operations = [
migrations.CreateModel(
name='Kingdom',
fields=[
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('name', models.CharField(max_length=255, unique=True)),
],
),
]
Loading