69b0b13ad3
- PEP8 - Fichiers inutilisés
27 lines
743 B
Python
27 lines
743 B
Python
# -*- coding: utf-8 -*-
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import models, migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='Pad',
|
|
fields=[
|
|
('id', models.AutoField(verbose_name='ID', primary_key=True,
|
|
auto_created=True, serialize=False)),
|
|
('nom', models.CharField(max_length=100)),
|
|
('url', models.URLField()),
|
|
('date', models.DateField(verbose_name='Créé le')),
|
|
],
|
|
options={
|
|
'verbose_name': 'Pad',
|
|
},
|
|
bases=(models.Model,),
|
|
),
|
|
]
|