You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

34 lines
1.5 KiB

# Generated by Django 4.2.11 on 2024-08-13 09:57
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('skyonnadmin', '0039_addcontact_firstname_addcontact_lastname'),
]
operations = [
migrations.CreateModel(
name='InternalTeam',
fields=[
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('FirstName', models.CharField(max_length=100, null=True)),
('LastName', models.CharField(max_length=100, null=True)),
('Designation', models.CharField(max_length=100, null=True)),
('Department', models.CharField(max_length=100, null=True)),
('Address_1', models.CharField(max_length=255, null=True)),
('Address_2', models.CharField(blank=True, max_length=255, null=True)),
('City', models.CharField(max_length=100)),
('State', models.CharField(max_length=100, null=True)),
('Pincode', models.CharField(max_length=6, null=True)),
('Country', models.CharField(max_length=100, null=True)),
('PhoneNo1', models.CharField(max_length=15, null=True)),
('PhoneNo2', models.CharField(blank=True, max_length=15, null=True)),
('Email1', models.EmailField(max_length=254, null=True)),
('Email2', models.EmailField(max_length=254, null=True)),
],
),
]