mirror of
https://github.com/ZwareBear/awx.git
synced 2026-04-04 07:01:49 -05:00
7 lines
157 B
Python
7 lines
157 B
Python
from django.db import models
|
|
|
|
|
|
class ChannelGroup(models.Model):
|
|
group = models.CharField(max_length=200, unique=True)
|
|
channels = models.TextField()
|