Skip to content
This repository has been archived by the owner on Feb 27, 2024. It is now read-only.

Commit

Permalink
remove stale table names from rename app management command
Browse files Browse the repository at this point in the history
  • Loading branch information
msaqib52 committed Jun 24, 2016
1 parent 7a05e09 commit 1e0e71b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 11 deletions.
Expand Up @@ -13,18 +13,14 @@ def get_table_names():
Returns list of table name projects app has
"""
return [
'peerreview',
'project',
'project_workgroups',
'submission',
'submissionreview',
'workgroup',
'workgroup_groups',
'workgroup_users',
'workgrouppeerreview',
'workgroupreview',
'workgroupsubmission',
'workgroupsubmissionreview',
'workgroup_users',
]


Expand Down
Expand Up @@ -22,18 +22,14 @@ def setUp(self):
self.old_appname = 'old_dummy_app'
self.new_appname = 'new_dummy_app'
self.table_names = [
'peerreview',
'project',
'project_workgroups',
'submission',
'submissionreview',
'workgroup',
'workgroup_groups',
'workgroup_users',
'workgrouppeerreview',
'workgroupreview',
'workgroupsubmission',
'workgroupsubmissionreview',
'workgroup_users',
]

self.old_app_migration_history = MigrationHistory.objects.create(
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -4,7 +4,7 @@

setup(
name='projects-edx-platform-extensions',
version='1.0.4',
version='1.0.5',
description='Projects management extension for edX platform',
long_description=open('README.rst').read(),
author='edX',
Expand Down

0 comments on commit 1e0e71b

Please sign in to comment.