mirror of
https://github.com/bryangerlach/rdgen.git
synced 2025-11-29 08:33:23 +00:00
7 lines
260 B
Python
7 lines
260 B
Python
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)
|