Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
edx-platform-release
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Hsin-Yu Chien
edx-platform-release
Commits
58241484
Unverified
Commit
58241484
authored
5 years ago
by
Hassan
Committed by
GitHub
5 years ago
Browse files
Options
Downloads
Plain Diff
Merge pull request #22737 from edx/pwnage101/rename-creditrequirement-order-3
Rename order in CreditRequirement (3/3)
parents
5e98fd7f
1178ad8b
Loading
Loading
Loading
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
common/djangoapps/util/tests/test_db.py
+0
-1
0 additions, 1 deletion
common/djangoapps/util/tests/test_db.py
openedx/core/djangoapps/credit/migrations/0008_creditrequirement_remove_order.py
+18
-0
18 additions, 0 deletions
.../credit/migrations/0008_creditrequirement_remove_order.py
with
18 additions
and
1 deletion
common/djangoapps/util/tests/test_db.py
+
0
−
1
View file @
58241484
...
...
@@ -222,7 +222,6 @@ class MigrationTests(TestCase):
Tests for migrations.
"""
@unittest.skip
(
"
Need to skip as part of a 3-release rollout to rename a field in the credit app. This will be unskipped in DE-1823.
"
)
@override_settings
(
MIGRATION_MODULES
=
{})
def
test_migrations_are_in_sync
(
self
):
"""
...
...
This diff is collapsed.
Click to expand it.
openedx/core/djangoapps/credit/migrations/0008_creditrequirement_remove_order.py
0 → 100644
+
18
−
0
View file @
58241484
# -*- coding: utf-8 -*-
from
__future__
import
unicode_literals
from
django.db
import
migrations
class
Migration
(
migrations
.
Migration
):
dependencies
=
[
(
'
credit
'
,
'
0007_creditrequirement_copy_values
'
),
]
operations
=
[
migrations
.
RemoveField
(
model_name
=
'
creditrequirement
'
,
name
=
'
order
'
,
),
]
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment