-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added stem and lexical category fields for #444
- Loading branch information
Showing
2 changed files
with
53 additions
and
0 deletions.
There are no files selected for viewing
41 changes: 41 additions & 0 deletions
41
validation/migrations/0036_historicalphrase_lexical_category_and_more.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,41 @@ | ||
# Generated by Django 4.2.15 on 2024-08-30 20:05 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
("validation", "0035_alter_historicalrecording_quality_and_more"), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name="historicalphrase", | ||
name="lexical_category", | ||
field=models.CharField( | ||
blank=True, help_text="The Lexical Category of the word", max_length=256 | ||
), | ||
), | ||
migrations.AddField( | ||
model_name="historicalphrase", | ||
name="stem", | ||
field=models.CharField( | ||
blank=True, help_text="The stem of the word", max_length=256 | ||
), | ||
), | ||
migrations.AddField( | ||
model_name="phrase", | ||
name="lexical_category", | ||
field=models.CharField( | ||
blank=True, help_text="The Lexical Category of the word", max_length=256 | ||
), | ||
), | ||
migrations.AddField( | ||
model_name="phrase", | ||
name="stem", | ||
field=models.CharField( | ||
blank=True, help_text="The stem of the word", max_length=256 | ||
), | ||
), | ||
] |
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