-
-
Notifications
You must be signed in to change notification settings - Fork 646
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1666 from wger-project/feature/import-usda-products
Refactor product/ingredient import
- Loading branch information
Showing
49 changed files
with
1,325 additions
and
797 deletions.
There are no files selected for viewing
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
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
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
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
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
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
100 changes: 100 additions & 0 deletions
100
wger/exercises/migrations/0030_increase_author_field_length.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,100 @@ | ||
# Generated by Django 4.2.6 on 2024-05-20 19:40 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
dependencies = [ | ||
('exercises', '0029_full_text_search'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name='exercise', | ||
name='license_author', | ||
field=models.CharField( | ||
blank=True, | ||
help_text='If you are not the author, enter the name or source here.', | ||
max_length=3500, | ||
null=True, | ||
verbose_name='Author(s)', | ||
), | ||
), | ||
migrations.AlterField( | ||
model_name='exercisebase', | ||
name='license_author', | ||
field=models.CharField( | ||
blank=True, | ||
help_text='If you are not the author, enter the name or source here.', | ||
max_length=3500, | ||
null=True, | ||
verbose_name='Author(s)', | ||
), | ||
), | ||
migrations.AlterField( | ||
model_name='exerciseimage', | ||
name='license_author', | ||
field=models.CharField( | ||
blank=True, | ||
help_text='If you are not the author, enter the name or source here.', | ||
max_length=3500, | ||
null=True, | ||
verbose_name='Author(s)', | ||
), | ||
), | ||
migrations.AlterField( | ||
model_name='exercisevideo', | ||
name='license_author', | ||
field=models.CharField( | ||
blank=True, | ||
help_text='If you are not the author, enter the name or source here.', | ||
max_length=3500, | ||
null=True, | ||
verbose_name='Author(s)', | ||
), | ||
), | ||
migrations.AlterField( | ||
model_name='historicalexercise', | ||
name='license_author', | ||
field=models.CharField( | ||
blank=True, | ||
help_text='If you are not the author, enter the name or source here.', | ||
max_length=3500, | ||
null=True, | ||
verbose_name='Author(s)', | ||
), | ||
), | ||
migrations.AlterField( | ||
model_name='historicalexercisebase', | ||
name='license_author', | ||
field=models.CharField( | ||
blank=True, | ||
help_text='If you are not the author, enter the name or source here.', | ||
max_length=3500, | ||
null=True, | ||
verbose_name='Author(s)', | ||
), | ||
), | ||
migrations.AlterField( | ||
model_name='historicalexerciseimage', | ||
name='license_author', | ||
field=models.CharField( | ||
blank=True, | ||
help_text='If you are not the author, enter the name or source here.', | ||
max_length=3500, | ||
null=True, | ||
verbose_name='Author(s)', | ||
), | ||
), | ||
migrations.AlterField( | ||
model_name='historicalexercisevideo', | ||
name='license_author', | ||
field=models.CharField( | ||
blank=True, | ||
help_text='If you are not the author, enter the name or source here.', | ||
max_length=3500, | ||
null=True, | ||
verbose_name='Author(s)', | ||
), | ||
), | ||
] |
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
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
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
Oops, something went wrong.