Skip to content

Instantly share code, notes, and snippets.

@Chukslord1
Last active July 31, 2021 13:29
Show Gist options
  • Save Chukslord1/11586d9a4318694be705f86a4846d934 to your computer and use it in GitHub Desktop.
Save Chukslord1/11586d9a4318694be705f86a4846d934 to your computer and use it in GitHub Desktop.
Agora Video Application
class Meeting(models.Model):
channel = models.TextField()
meeting_title = models.TextField(null=True,blank=True)
meeting_subject = models.TextField(null=True,blank=True)
start_time = models.TimeField(null=True,blank=True)
end_time = models.TimeField(null=True,blank=True)
date = models.DateField(null=True,blank=True)
class Channel(models.Model):
channel = models.TextField()
app_id= models.TextField()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment