19 lines
378 B
Python
19 lines
378 B
Python
|
|
# Generated by Django 4.2.29 on 2026-03-15 21:03
|
||
|
|
|
||
|
|
from django.db import migrations, models
|
||
|
|
|
||
|
|
|
||
|
|
class Migration(migrations.Migration):
|
||
|
|
|
||
|
|
dependencies = [
|
||
|
|
('radio', '0002_stationplay'),
|
||
|
|
]
|
||
|
|
|
||
|
|
operations = [
|
||
|
|
migrations.AddField(
|
||
|
|
model_name='savedstation',
|
||
|
|
name='notes',
|
||
|
|
field=models.TextField(blank=True),
|
||
|
|
),
|
||
|
|
]
|