mirror of
https://github.com/YunoHost/yunorunner.git
synced 2024-09-03 20:05:52 +02:00
[fix] revision can be null
This commit is contained in:
parent
30aa832e3c
commit
be4457f713
1 changed files with 1 additions and 1 deletions
|
@ -6,7 +6,7 @@ db = peewee.SqliteDatabase('db.sqlite')
|
|||
class Repo(peewee.Model):
|
||||
name = peewee.CharField()
|
||||
url = peewee.CharField()
|
||||
revision = peewee.CharField()
|
||||
revision = peewee.CharField(null=True)
|
||||
app_list = peewee.CharField(null=True)
|
||||
|
||||
class Meta:
|
||||
|
|
Loading…
Add table
Reference in a new issue