# Generated by Django 4.2 on 2023-06-30 09:36

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


class Migration(migrations.Migration):

    dependencies = [
        ('dashboard', '0013_imagemaster_image_capture_date'),
    ]

    operations = [
        migrations.CreateModel(
            name='SubDistrictMaster',
            fields=[
                ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
                ('created_at', models.DateTimeField(auto_now_add=True, null=True)),
                ('updated_at', models.DateTimeField(auto_now=True, null=True)),
                ('created_by', models.CharField(blank=True, max_length=16, null=True)),
                ('updated_by', models.CharField(blank=True, max_length=16, null=True)),
                ('name', models.CharField(default=None, max_length=50)),
                ('value', models.CharField(default=None, max_length=100)),
                ('code', models.CharField(blank=True, max_length=10, null=True)),
                ('subdistrict', models.ForeignKey(default=None, on_delete=django.db.models.deletion.CASCADE, to='dashboard.districtmaster')),
            ],
            options={
                'abstract': False,
            },
        ),
    ]
