Skip to content

Commit

Permalink
added missing migration file
Browse files Browse the repository at this point in the history
  • Loading branch information
afkiwers committed Dec 31, 2023
1 parent 39937c8 commit 41b8e4e
Showing 1 changed file with 19 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Generated by Django 3.2.23 on 2023-12-31 05:55

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


class Migration(migrations.Migration):

dependencies = [
('inventree_kicad', '0007_auto_20231212_1720'),
]

operations = [
migrations.AlterField(
model_name='selectedcategory',
name='footprint_parameter_template',
field=models.ForeignKey(blank=True, help_text='Footprint parameter template for this category. Overrides the KICAD_FOOTPRINT_PARAMETER setting for this category.', null=True, on_delete=django.db.models.deletion.SET_NULL, related_name='footprint_kicad_categories', to='part.partparametertemplate', verbose_name='Footprint Parameter Template'),
),
]

0 comments on commit 41b8e4e

Please sign in to comment.