Files
CyberPanel/databases/models.py
Michael Ramsey bd71b39d31 push changes
2019-10-08 10:53:02 -04:00

13 lines
343 B
Python

# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import models
from websiteFunctions.models import Websites
# Create your models here.
class Databases(models.Model):
website = models.ForeignKey(Websites)
dbName = models.CharField(max_length=50,unique=True)
dbUser = models.CharField(max_length=50)