mirror of
https://github.com/Steffo99/sophon.git
synced 2024-12-22 06:44:21 +00:00
🔧 Allow settings field to be null
This commit is contained in:
parent
ce8a5f722d
commit
1982966d30
1 changed files with 1 additions and 1 deletions
|
@ -16,7 +16,7 @@ class DataSource(models.Model):
|
||||||
pandasdmx_id = models.CharField("Internal pandasdmx source id", max_length=16, primary_key=True)
|
pandasdmx_id = models.CharField("Internal pandasdmx source id", max_length=16, primary_key=True)
|
||||||
builtin = models.BooleanField("If the source is builtin in pandasdmx")
|
builtin = models.BooleanField("If the source is builtin in pandasdmx")
|
||||||
|
|
||||||
settings = models.JSONField("Source info to pass to pandasdmx if the source is not builtin")
|
settings = models.JSONField("Source info to pass to pandasdmx if the source is not builtin", null=True)
|
||||||
|
|
||||||
|
|
||||||
class Project(models.Model):
|
class Project(models.Model):
|
||||||
|
|
Loading…
Reference in a new issue