Files
CyberPanel/baseTemplate/models.py
2019-06-08 21:41:43 +00:00

11 lines
239 B
Python
Executable File

# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import models
# Create your models here.
class version(models.Model):
currentVersion = models.CharField(max_length=50)
build = models.IntegerField()