mirror of
https://github.com/Dispatcharr/Dispatcharr.git
synced 2026-01-23 02:35:14 +00:00
removed db index here, I don't think it's needed
This commit is contained in:
parent
bfaa52ea13
commit
f295ee219c
2 changed files with 1 additions and 6 deletions
|
|
@ -15,9 +15,4 @@ class Migration(migrations.Migration):
|
|||
name='custom_properties',
|
||||
field=models.TextField(blank=True, null=True),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='channel',
|
||||
name='channel_number',
|
||||
field=models.IntegerField(db_index=True),
|
||||
),
|
||||
]
|
||||
|
|
|
|||
|
|
@ -210,7 +210,7 @@ class ChannelManager(models.Manager):
|
|||
|
||||
|
||||
class Channel(models.Model):
|
||||
channel_number = models.IntegerField(db_index=True)
|
||||
channel_number = models.IntegerField()
|
||||
name = models.CharField(max_length=255)
|
||||
logo = models.ForeignKey(
|
||||
'Logo',
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue