29 lines
777 B
Python
Executable File
29 lines
777 B
Python
Executable File
# Generated by Django 3.0.5 on 2020-05-05 13:37
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
initial = True
|
|
|
|
dependencies = [
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='Titolo',
|
|
fields=[
|
|
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
|
('titolo', models.CharField(max_length=300)),
|
|
('slug_id', models.CharField(max_length=11)),
|
|
('link_embedded', models.URLField()),
|
|
('foto', models.URLField()),
|
|
],
|
|
options={
|
|
'verbose_name': 'Titolo',
|
|
'verbose_name_plural': 'Titoli',
|
|
},
|
|
),
|
|
]
|