-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Nikita/groot 86 remove brand updates from databankgreen (#150)
* deleted brand_update model. * deleted brand_suggestion model. * Revert "deleted brand_suggestion model." This reverts commit e05e816.
- Loading branch information
1 parent
f2a0428
commit c6f6920
Showing
7 changed files
with
27 additions
and
219 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
23 changes: 23 additions & 0 deletions
23
brand/migrations/0039_alter_brand_tag_delete_brandupdate.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,23 @@ | ||
# Generated by Django 4.1.7 on 2024-02-16 22:20 | ||
|
||
import brand.models.brand | ||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [("brand", "0038_commentary_embrace")] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name="brand", | ||
name="tag", | ||
field=models.CharField( | ||
help_text="the tag we use or this brand record at Bank.Green. ", | ||
max_length=100, | ||
unique=True, | ||
validators=[brand.models.brand.validate_tag], | ||
), | ||
), | ||
migrations.DeleteModel(name="BrandUpdate"), | ||
] |
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 |
---|---|---|
@@ -1,5 +1,4 @@ | ||
from brand.models.brand import Brand | ||
from brand.models.brand_update import BrandUpdate | ||
from brand.models.commentary import Commentary, RatingChoice | ||
from brand.models.features import BrandFeature, FeatureAvailabilityChoice, FeatureType | ||
from brand.models.brand_suggestion import BrandSuggestion |
This file was deleted.
Oops, something went wrong.
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