| 12345678910111213 |
- from django.db import models
- # Create your models here.
- class ChannelSettings(models.Model):
- # channel = models.AutoField(
- # #max_length = 11, # 'max_length' is ignored when used with AutoField.
- # primary_key = True,
- # )
- class Meta:
- managed = False
- db_table = "channel_settings"
- #verbose_name_plural = "accounts"
|