diora-web/radio/migrations/0005_featured_station.py
marwin 3761b13649
All checks were successful
Build and push Docker image / build (push) Successful in 12s
Test / test (push) Successful in 13s
Add Django admin, FeaturedStation model, crmfrsh is superuser
2026-03-16 21:01:51 +01:00

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'],
},
),
]