fix: typo

pull/10/head
Aravinth Manivannan 2022-06-28 00:56:34 +05:30
parent 026a1a4c12
commit d84021915f
Signed by: realaravinth
GPG Key ID: AD9F0F08E855ED88
2 changed files with 20 additions and 2 deletions

View File

@ -0,0 +1,18 @@
# Generated by Django 4.0.3 on 2022-06-27 17:29
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
("infrastructure", "0002_instancecreated_gitea_password"),
]
operations = [
migrations.RenameField(
model_name="instancecreated",
old_name="creted",
new_name="created",
),
]

View File

@ -20,8 +20,8 @@ from dash.models import Instance
class InstanceCreated(models.Model):
instance = models.ForeignKey(Instance, on_delete=models.PROTECT)
gitea_password = models.CharField(
"Name of this configuration",
"Gitea password of this deployment",
default=None,
max_length=32,
)
creted = models.BooleanField(default=False)
created = models.BooleanField(default=False)