initial commit

This commit is contained in:
Bryan Gerlach
2024-09-24 16:04:47 -05:00
commit b401aa531b
30 changed files with 707 additions and 0 deletions

6
rdgenerator/models.py Normal file
View File

@@ -0,0 +1,6 @@
from django.db import models
class GithubRun(models.Model):
id = models.IntegerField(verbose_name="ID",primary_key=True)
uuid = models.CharField(verbose_name="uuid", max_length=100)
status = models.CharField(verbose_name="status", max_length=100)