31 lines
923 B
Python
31 lines
923 B
Python
# Generated by Django 3.2 on 2021-11-13 15:08
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('parts', '0003_alter_componentparametertype_unit'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.RemoveField(
|
|
model_name='componentparametertype',
|
|
name='engineering_unit',
|
|
),
|
|
migrations.RemoveField(
|
|
model_name='componentparametertype',
|
|
name='freetext_parameter',
|
|
),
|
|
migrations.RemoveField(
|
|
model_name='componentparametertype',
|
|
name='it_unit',
|
|
),
|
|
migrations.AddField(
|
|
model_name='componentparametertype',
|
|
name='parameter_type',
|
|
field=models.CharField(choices=[('F', 'Free Text'), ('N', 'Standard float number'), ('E', 'Engineering / SI Unit'), ('I', 'IT Type')], default='N', max_length=1),
|
|
),
|
|
]
|