mirror of
https://github.com/Dispatcharr/Dispatcharr.git
synced 2026-07-20 16:51:10 +00:00
Also renames the migration to `0023_` to resolve collision with upstream `0022_alter_epgdata_name`. Rationale in #938.
21 lines
538 B
Python
21 lines
538 B
Python
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('epg', '0022_alter_epgdata_name'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='epgsource',
|
|
name='programme_index',
|
|
field=models.JSONField(
|
|
blank=True,
|
|
default=None,
|
|
help_text='Byte-offset index mapping tvg_id to file positions, built after each EPG refresh',
|
|
null=True,
|
|
),
|
|
),
|
|
]
|