| 1234567891011121314151617181920212223 |
- from django.db import models
- # Create your models here.
- class ChannelSettings(models.Model):
- id = models.AutoField(
- #max_length = 11, # 'max_length' is ignored when used with AutoField.
- primary_key = True,
- )
- channel = models.ForeignKey(
- "stats.Channel",
- on_delete = models.CASCADE,
- to_field = "channel_id",
- db_column = "channel",
- )
- interact = models.BooleanField(
- default = False,
- )
-
- class Meta:
- managed = False
- db_table = "channel_settings"
- #verbose_name_plural = "accounts"
|