30 lines
1.1 KiB
Python
30 lines
1.1 KiB
Python
# Generated by Django 5.2.7 on 2026-02-02 00:17
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
initial = True
|
|
|
|
dependencies = [
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='RadioConfig',
|
|
fields=[
|
|
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
|
('title', models.CharField(default='La Morenita Radio', max_length=255)),
|
|
('stream_url', models.URLField(help_text='Direct link to the audio stream')),
|
|
('whatsapp_number', models.CharField(default='+52 844 218 8814', max_length=20)),
|
|
('facebook_url', models.URLField(default='https://www.facebook.com/profile.php?id=61583511337947')),
|
|
('tiktok_url', models.URLField(default='https://www.tiktok.com/@chikipapiradio')),
|
|
],
|
|
options={
|
|
'verbose_name': 'Radio Configuration',
|
|
'verbose_name_plural': 'Radio Configuration',
|
|
},
|
|
),
|
|
]
|