mirror of
https://github.com/correl/codereview.git
synced 2024-11-24 03:00:07 +00:00
7 lines
205 B
Python
7 lines
205 B
Python
|
from django.db import models
|
||
|
|
||
|
class Repository(models.Model):
|
||
|
name = models.CharField(max_length=200, unique=True)
|
||
|
path = models.CharField(max_length=255)
|
||
|
type = models.IntegerField(default=0)
|