Rename CablePath.is_connected to is_active

This commit is contained in:
Jeremy Stretch
2020-10-05 11:13:33 -04:00
parent 13db22d392
commit 3d34f1cdcb
9 changed files with 65 additions and 65 deletions

View File

@@ -1191,7 +1191,7 @@ class CablePath(models.Model):
fk_field='destination_id'
)
path = PathField()
is_connected = models.BooleanField(
is_active = models.BooleanField(
default=False
)