-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Wagtail 4.1.9 upgrade (#1522) * Updated to wagtail 4.1.9 and replaced WagtailPageTests with WagtailPageTestCase * Fixes migration conflict * Added source field to Thank You Note (#1529) * Update admin.py (#1532) Co-authored-by: Staxly <[email protected]> * updating book filter to exclude (#1530) Co-authored-by: Staxly <[email protected]> Co-authored-by: Michael Volo <[email protected]> * remove unused account id field from resource downloads * do not check for book and contact on resource creation * remove rejection test * Require UUID, do not require resource name * set default uuid to something random --------- Co-authored-by: Ed Woodward <[email protected]> Co-authored-by: Colby <[email protected]> Co-authored-by: Staxly <[email protected]>
- Loading branch information
1 parent
4e66d25
commit 6995995
Showing
5 changed files
with
63 additions
and
35 deletions.
There are no files selected for viewing
20 changes: 20 additions & 0 deletions
20
...sforce/migrations/0106_remove_resourcedownload_salesforce__account_b11d37_idx_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,20 @@ | ||
# Generated by Django 4.1.7 on 2023-12-13 19:28 | ||
|
||
from django.db import migrations | ||
|
||
|
||
class Migration(migrations.Migration): | ||
dependencies = [ | ||
("salesforce", "0105_auto_20221212_1543"), | ||
] | ||
|
||
operations = [ | ||
migrations.RemoveIndex( | ||
model_name="resourcedownload", | ||
name="salesforce__account_b11d37_idx", | ||
), | ||
migrations.RemoveField( | ||
model_name="resourcedownload", | ||
name="account_id", | ||
), | ||
] |
23 changes: 23 additions & 0 deletions
23
salesforce/migrations/0107_alter_resourcedownload_account_uuid_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,23 @@ | ||
# Generated by Django 4.1.7 on 2023-12-13 21:42 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
dependencies = [ | ||
("salesforce", "0106_remove_resourcedownload_salesforce__account_b11d37_idx_and_more"), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name="resourcedownload", | ||
name="account_uuid", | ||
field=models.UUIDField(default="19d58898-0b29-488f-a35a-6288e3c0b44c"), | ||
preserve_default=False, | ||
), | ||
migrations.AlterField( | ||
model_name="resourcedownload", | ||
name="resource_name", | ||
field=models.CharField(blank=True, max_length=255, null=True), | ||
), | ||
] |
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