Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
edx-platform-release
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
1
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package Registry
Operate
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Admin message
code.vt.edu will be down for maintenance from 0530-0630 EDT Wednesday, March 26th
Show more breadcrumbs
Hsin-Yu Chien
edx-platform-release
Commits
abf77b1a
Commit
abf77b1a
authored
5 years ago
by
Diana Huang
Browse files
Options
Downloads
Patches
Plain Diff
Drop notes tables.
parent
84ccc9b4
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
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
lms/djangoapps/notes/migrations/0002_remove_tables.py
+22
-0
22 additions, 0 deletions
lms/djangoapps/notes/migrations/0002_remove_tables.py
with
22 additions
and
1 deletion
common/djangoapps/util/tests/test_db.py
+
0
−
1
View file @
abf77b1a
...
...
@@ -223,7 +223,6 @@ class MigrationTests(TestCase):
Tests for migrations.
"""
@unittest.skip
(
"
Migration will delete the Note model. Need to ship not referencing it first. DEPR-18.
"
)
@override_settings
(
MIGRATION_MODULES
=
{})
def
test_migrations_are_in_sync
(
self
):
"""
...
...
This diff is collapsed.
Click to expand it.
lms/djangoapps/notes/migrations/0002_remove_tables.py
0 → 100644
+
22
−
0
View file @
abf77b1a
# -*- coding: utf-8 -*-
# Generated by Django 1.11.25 on 2019-10-01 18:23
from
__future__
import
unicode_literals
from
django.db
import
migrations
class
Migration
(
migrations
.
Migration
):
dependencies
=
[
(
'
notes
'
,
'
0001_initial
'
),
]
operations
=
[
migrations
.
RemoveField
(
model_name
=
'
note
'
,
name
=
'
user
'
,
),
migrations
.
DeleteModel
(
name
=
'
Note
'
,
),
]
This diff is collapsed.
Click to expand it.
Preview
0%
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