mirror of
https://github.com/usmannasir/cyberpanel.git
synced 2025-11-07 05:45:59 +01:00
11 lines
239 B
Python
11 lines
239 B
Python
|
|
# -*- 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()
|