29 lines
1,020 B
Python
29 lines
1,020 B
Python
# Generated by Django 4.2.29 on 2026-03-16 20:00
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('radio', '0004_focussession'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='FeaturedStation',
|
|
fields=[
|
|
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
|
('name', models.CharField(max_length=200)),
|
|
('url', models.URLField(max_length=500)),
|
|
('description', models.CharField(blank=True, max_length=300)),
|
|
('favicon_url', models.URLField(blank=True, max_length=500)),
|
|
('tags', models.CharField(blank=True, max_length=200)),
|
|
('order', models.PositiveIntegerField(default=0)),
|
|
('active', models.BooleanField(default=True)),
|
|
],
|
|
options={
|
|
'ordering': ['order', 'name'],
|
|
},
|
|
),
|
|
]
|