32 lines
1.1 KiB
Python
32 lines
1.1 KiB
Python
# Generated by Django 2.0.1 on 2018-01-14 18:04
|
|
|
|
from django.db import migrations, models
|
|
import settings.models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
initial = True
|
|
|
|
dependencies = [
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='ContentSettings',
|
|
fields=[
|
|
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
|
('URL du FTP', models.URLField(max_length=255)),
|
|
('Identifiant sur le FTP', models.CharField(max_length=255)),
|
|
('Mot de passe', settings.models.AESEncryptedField(max_length=255)),
|
|
],
|
|
),
|
|
migrations.CreateModel(
|
|
name='SiteSettings',
|
|
fields=[
|
|
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
|
('allow_upload', models.BooleanField(help_text="Autoriser l'upload de vidéos.")),
|
|
('site_name', models.CharField(help_text='Nom du site', max_length=255)),
|
|
],
|
|
),
|
|
]
|