HEX
Server: Apache/2.4.52 (Ubuntu)
System: Linux mail.btech-izolacje.pl 5.15.0-140-generic #150-Ubuntu SMP Sat Apr 12 06:00:09 UTC 2025 x86_64
User: pewna6876 (1017)
PHP: 8.2.28
Disabled: NONE
Upload Files
File: //usr/local/CyberCP/ftp/migrations/0001_initial.py
# Generated by Django 4.2.14 on 2025-05-28 15:55

from django.db import migrations, models
import django.db.models.deletion


class Migration(migrations.Migration):

    initial = True

    dependencies = [
        ('websiteFunctions', '0001_initial'),
    ]

    operations = [
        migrations.CreateModel(
            name='Users',
            fields=[
                ('id', models.AutoField(db_column='ID', primary_key=True, serialize=False)),
                ('user', models.CharField(db_column='User', max_length=32, unique=True)),
                ('password', models.CharField(db_column='Password', max_length=255)),
                ('uid', models.IntegerField(db_column='Uid')),
                ('gid', models.IntegerField(db_column='Gid')),
                ('dir', models.CharField(db_column='Dir', max_length=255)),
                ('quotasize', models.IntegerField(db_column='QuotaSize')),
                ('status', models.CharField(db_column='Status', max_length=1)),
                ('ulbandwidth', models.IntegerField(db_column='ULBandwidth')),
                ('dlbandwidth', models.IntegerField(db_column='DLBandwidth')),
                ('date', models.DateField(db_column='Date')),
                ('lastmodif', models.CharField(db_column='LastModif', max_length=255)),
                ('domain', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='websiteFunctions.websites')),
            ],
            options={
                'db_table': 'users',
            },
        ),
    ]