forked from github/plane
Merge branch 'feat/self_hosted_instance' of github.com:makeplane/plane into feat/self_hosted_instance
This commit is contained in:
commit
f37bae9ad9
@ -0,0 +1,18 @@
|
|||||||
|
# Generated by Django 4.2.5 on 2023-11-08 14:12
|
||||||
|
|
||||||
|
from django.db import migrations, models
|
||||||
|
|
||||||
|
|
||||||
|
class Migration(migrations.Migration):
|
||||||
|
|
||||||
|
dependencies = [
|
||||||
|
('license', '0003_alter_instanceconfiguration_value'),
|
||||||
|
]
|
||||||
|
|
||||||
|
operations = [
|
||||||
|
migrations.AlterField(
|
||||||
|
model_name='instanceconfiguration',
|
||||||
|
name='value',
|
||||||
|
field=models.TextField(blank=True, default=None, null=True),
|
||||||
|
),
|
||||||
|
]
|
@ -32,7 +32,7 @@ class Instance(BaseModel):
|
|||||||
|
|
||||||
class InstanceConfiguration(AuditModel):
|
class InstanceConfiguration(AuditModel):
|
||||||
key = models.CharField(max_length=100, unique=True)
|
key = models.CharField(max_length=100, unique=True)
|
||||||
value = models.TextField(null=True, blank=True)
|
value = models.TextField(null=True, blank=True, default=None)
|
||||||
|
|
||||||
class Meta:
|
class Meta:
|
||||||
verbose_name = "Instance Configuration"
|
verbose_name = "Instance Configuration"
|
||||||
|
Loading…
Reference in New Issue
Block a user