Files
CyberPanel/baseTemplate/models.py

11 lines
239 B
Python
Raw Normal View History

2017-10-24 19:16:36 +05:00
# -*- 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()