30 lines
1.2 KiB
Python
30 lines
1.2 KiB
Python
# Generated manually
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('reports', '0002_scamreport_is_auto_discovered'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='SiteSettings',
|
|
fields=[
|
|
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
|
('contact_email', models.EmailField(default='support@fraudplatform.bg', help_text='Основен имейл за контакти и поддръжка', max_length=254)),
|
|
('contact_phone', models.CharField(default='+359 2 XXX XXXX', help_text='Телефонен номер за контакти', max_length=50)),
|
|
('contact_address', models.CharField(blank=True, default='София, България', help_text='Адрес за контакти', max_length=200)),
|
|
('updated_at', models.DateTimeField(auto_now=True)),
|
|
],
|
|
options={
|
|
'verbose_name': 'Настройки на Сайта',
|
|
'verbose_name_plural': 'Настройки на Сайта',
|
|
'db_table': 'reports_sitesettings',
|
|
},
|
|
),
|
|
]
|
|
|