# Generated by Django 5.0.7 on 2024-07-27 10:14

from django.db import migrations, models


class Migration(migrations.Migration):

    initial = True

    dependencies = [
    ]

    operations = [
        migrations.CreateModel(
            name='Clientes',
            fields=[
                ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
                ('id_anfitriao', models.IntegerField(null=True)),
                ('id_pertence', models.IntegerField(null=True)),
                ('assunto', models.CharField(max_length=40, null=True)),
                ('data', models.CharField(max_length=20)),
                ('datas_anteriores', models.CharField(max_length=40)),
            ],
        ),
        migrations.CreateModel(
            name='Usuario',
            fields=[
                ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
                ('id_anfitriao', models.IntegerField(null=True)),
                ('id_pertence', models.IntegerField(null=True)),
                ('contacto', models.CharField(max_length=9, null=True)),
                ('primeiro_nome', models.CharField(max_length=50, null=True)),
                ('apelido', models.CharField(max_length=50, null=True)),
                ('provincia', models.CharField(max_length=100, null=True)),
                ('imagem', models.ImageField(null=True, upload_to='usuarios')),
                ('tipo_de_conta', models.CharField(max_length=20, null=True)),
                ('type_sys', models.CharField(default='normal', max_length=100, null=True)),
                ('data_inicio', models.CharField(max_length=20, null=True)),
                ('seguranca', models.CharField(max_length=20, null=True)),
                ('tema', models.CharField(max_length=20, null=True)),
                ('status_trabalho', models.CharField(default='habilitado', max_length=20, null=True)),
                ('feixo', models.CharField(default='desabilitado', max_length=20, null=True)),
                ('supervisor', models.CharField(default='na', max_length=20, null=True)),
                ('hora_entrada_seg', models.CharField(default='none', max_length=20, null=True)),
                ('hora_saida_seg', models.CharField(default='none', max_length=20, null=True)),
                ('hora_entrada_ter', models.CharField(default='none', max_length=20, null=True)),
                ('hora_saida_ter', models.CharField(default='none', max_length=20, null=True)),
                ('hora_entrada_qua', models.CharField(default='none', max_length=20, null=True)),
                ('hora_saida_qua', models.CharField(default='none', max_length=20, null=True)),
                ('hora_entrada_qui', models.CharField(default='none', max_length=20, null=True)),
                ('hora_saida_qui', models.CharField(default='none', max_length=20, null=True)),
                ('hora_entrada_sex', models.CharField(default='none', max_length=20, null=True)),
                ('hora_saida_sex', models.CharField(default='none', max_length=20, null=True)),
                ('hora_entrada_sab', models.CharField(default='none', max_length=20, null=True)),
                ('hora_saida_sab', models.CharField(default='none', max_length=20, null=True)),
                ('hora_entrada_dom', models.CharField(default='none', max_length=20, null=True)),
                ('hora_saida_dom', models.CharField(default='none', max_length=20, null=True)),
                ('pacote', models.CharField(default='basico', max_length=50)),
                ('status_pagamento', models.CharField(default='activo', max_length=50)),
                ('data_pagamento', models.CharField(max_length=20, null=True)),
                ('data_validade_pagamento', models.CharField(max_length=20, null=True)),
                ('mensalidade_pagamento', models.IntegerField(default=10, null=True)),
            ],
        ),
    ]
