models.py 368 B

12345678910111213
  1. from django.db import models
  2. # Create your models here.
  3. class ChannelSettings(models.Model):
  4. # channel = models.AutoField(
  5. # #max_length = 11, # 'max_length' is ignored when used with AutoField.
  6. # primary_key = True,
  7. # )
  8. class Meta:
  9. managed = False
  10. db_table = "channel_settings"
  11. #verbose_name_plural = "accounts"