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.
29 lines
1.2 KiB
29 lines
1.2 KiB
# Generated by Django 5.1.1 on 2024-09-16 08:40
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('skyonnadmin', '0049_delete_addcontact'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='AddContact',
|
|
fields=[
|
|
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
|
('Contact_id', models.CharField(max_length=20, null=True)),
|
|
('Company', models.CharField(blank=True, max_length=100, null=True)),
|
|
('Sub_company', models.CharField(blank=True, max_length=100, null=True)),
|
|
('FirstName', models.CharField(max_length=100, null=True)),
|
|
('LastName', models.CharField(blank=True, max_length=50, null=True)),
|
|
('Department', models.CharField(blank=True, max_length=50, null=True)),
|
|
('Designation', models.CharField(blank=True, max_length=50, null=True)),
|
|
('Phone_number', models.CharField(max_length=10, null=True, unique=True)),
|
|
('Email', models.EmailField(max_length=254, null=True, unique=True)),
|
|
],
|
|
),
|
|
]
|