mirror of
https://github.com/usmannasir/cyberpanel.git
synced 2025-11-07 13:56:01 +01:00
Initial Commit
This commit is contained in:
12
databases/models.py
Normal file
12
databases/models.py
Normal file
@@ -0,0 +1,12 @@
|
||||
# -*- 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, unique=True)
|
||||
Reference in New Issue
Block a user