mirror of
https://github.com/ansible/awx.git
synced 2026-01-21 06:28:01 -03:30
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()
|