-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
afkiwers
committed
Dec 31, 2023
1 parent
39937c8
commit 41b8e4e
Showing
1 changed file
with
19 additions
and
0 deletions.
There are no files selected for viewing
19 changes: 19 additions & 0 deletions
19
inventree_kicad/migrations/0008_alter_selectedcategory_footprint_parameter_template.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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'), | ||
), | ||
] |