12345678910111213141516171819202122 |
- # Generated by Django 4.0.5 on 2022-07-04 07:41
- from django.db import migrations, models
- class Migration(migrations.Migration):
- initial = True
- dependencies = [
- ]
- operations = [
- migrations.CreateModel(
- name='Part',
- fields=[
- ('id', models.AutoField(primary_key=True, serialize=False)),
- ('part_number', models.TextField()),
- ('description', models.TextField()),
- ],
- ),
- ]
|