mirror of
https://github.com/usmannasir/cyberpanel.git
synced 2025-11-07 05:45:59 +01:00
25 lines
609 B
Python
25 lines
609 B
Python
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.11 on 2019-01-07 12:43
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
initial = True
|
|
|
|
dependencies = [
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='version',
|
|
fields=[
|
|
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
|
('currentVersion', models.CharField(max_length=50)),
|
|
('build', models.IntegerField()),
|
|
],
|
|
),
|
|
]
|