id=models.UUIDField(primary_key=True,default=uuid.uuid4,editable=False,db_index=True,help_text="A unique identifier for this channel")
name=models.CharField(max_length=1024,help_text="The human-readable name of the channel. Does not, and often will not, necessarily correlate with the channel's handle")
description=models.TextField(help_text="A user-facing description of the channel, its owners, and its content. May also contain links to related resources and websites.")
id=models.CharField(primary_key=True,max_length=512,default=uuid.uuid4,editable=False,db_index=True,help_text="A unique identifier for this release. Usually the LBRY claim ID, if available")
channel=models.ForeignKey(OdyseeChannel,on_delete=models.CASCADE,db_index=True,help_text="The channel that this release came from")
name=models.CharField(max_length=1024,help_text="The human-readable name of this release")
description=models.TextField(help_text="A user-facing description of this release. This should mirror the official post from Odysee, if available")
released=models.DateField(help_text="The date that this release was posted in UTC")
url=models.URLField(max_length=512,help_text="The URL to the Odysee page where the release can be downloaded. It is NOT a direct download link")
thumbnail=models.URLField(max_length=512,help_text="The URL to the Odysee-hosted thumbnail of the release")
filehash=models.CharField(max_length=512,help_text="The hash of the file of the claim")
tags=models.ManyToManyField(Tag,related_name="releases",help_text="A list of tags associated with this release. This should NOT contain extraneous tags from Odysee -- it's a data structure specific to this site.")