Version initiale de test
This commit is contained in:
23
collection/games/migrations/0001_initial.py
Normal file
23
collection/games/migrations/0001_initial.py
Normal file
@ -0,0 +1,23 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Generated by Django 1.11 on 2017-08-16 19:55
|
||||
from __future__ import unicode_literals
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
initial = True
|
||||
|
||||
dependencies = [
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.CreateModel(
|
||||
name='Console',
|
||||
fields=[
|
||||
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
||||
('name', models.CharField(max_length=254)),
|
||||
],
|
||||
),
|
||||
]
|
0
collection/games/migrations/__init__.py
Normal file
0
collection/games/migrations/__init__.py
Normal file
Reference in New Issue
Block a user