23 lines
682 B
Python
23 lines
682 B
Python
# Generated by Django 4.2 on 2024-12-27 04:49
|
|
|
|
from django.db import migrations, models
|
|
import django.db.models.deletion
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('core', '0046_enginetype_importtype_stockauto_moto_hours_and_more'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='Lead',
|
|
fields=[
|
|
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
|
('bitrix_id', models.IntegerField()),
|
|
('contact', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='core.contact')),
|
|
],
|
|
),
|
|
]
|