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