12 lines
277 B
Python
12 lines
277 B
Python
from django.db import models
|
|
import jsonfield
|
|
|
|
|
|
class Connection(models.Model):
|
|
name = models.CharField(max_length=255)
|
|
connection_path = models.CharField(max_length=255)
|
|
credentials = jsonfield.JSONField()
|
|
|
|
def __str__(self):
|
|
return f"{self.name}"
|