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
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
de6ca4a7
Commit
de6ca4a7
authored
10 years ago
by
jsa
Browse files
Options
Downloads
Patches
Plain Diff
avoid errors when forward-migrating course_groups after south conversion
JIRA: TNL-937
parent
eced849d
Loading
Loading
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
openedx/core/djangoapps/course_groups/migrations/0001_initial.py
+34
-17
34 additions, 17 deletions
.../core/djangoapps/course_groups/migrations/0001_initial.py
with
34 additions
and
17 deletions
openedx/core/djangoapps/course_groups/migrations/0001_initial.py
+
34
−
17
View file @
de6ca4a7
...
...
@@ -2,31 +2,48 @@
import
datetime
from
south.db
import
db
from
south.v2
import
SchemaMigration
from
django.db
import
models
from
django.db
import
models
,
connection
class
Migration
(
SchemaMigration
):
def
forwards
(
self
,
orm
):
# Adding model 'CourseUserGroup'
db
.
create_table
(
'
course_groups_courseusergroup
'
,
(
(
'
id
'
,
self
.
gf
(
'
django.db.models.fields.AutoField
'
)(
primary_key
=
True
)),
(
'
name
'
,
self
.
gf
(
'
django.db.models.fields.CharField
'
)(
max_length
=
255
)),
(
'
course_id
'
,
self
.
gf
(
'
xmodule_django.models.CourseKeyField
'
)(
max_length
=
255
,
db_index
=
True
)),
(
'
group_type
'
,
self
.
gf
(
'
django.db.models.fields.CharField
'
)(
max_length
=
20
)),
))
db
.
send_create_signal
(
'
course_groups
'
,
[
'
CourseUserGroup
'
])
# Adding unique constraint on 'CourseUserGroup', fields ['name', 'course_id']
db
.
create_unique
(
'
course_groups_courseusergroup
'
,
[
'
name
'
,
'
course_id
'
]
)
def
table_exists
(
name
):
return
name
in
connection
.
introspection
.
table_names
(
)
# Adding M2M table for field users on 'CourseUserGroup'
db
.
create_table
(
'
course_groups_courseusergroup_users
'
,
(
(
'
id
'
,
models
.
AutoField
(
verbose_name
=
'
ID
'
,
primary_key
=
True
,
auto_created
=
True
)),
(
'
courseusergroup
'
,
models
.
ForeignKey
(
orm
[
'
course_groups.courseusergroup
'
],
null
=
False
)),
(
'
user
'
,
models
.
ForeignKey
(
orm
[
'
auth.user
'
],
null
=
False
))
))
db
.
create_unique
(
'
course_groups_courseusergroup_users
'
,
[
'
courseusergroup_id
'
,
'
user_id
'
])
def
index_exists
(
table_name
,
column_name
):
return
column_name
in
connection
.
introspection
.
get_indexes
(
connection
.
cursor
(),
table_name
)
# Since this djangoapp has been converted to south migrations after-the-fact,
# these tables/indexes should already exist when migrating an existing installation.
if
not
(
table_exists
(
'
course_groups_courseusergroup
'
)
and
index_exists
(
'
course_groups_courseusergroup
'
,
'
name
'
)
and
index_exists
(
'
course_groups_courseusergroup
'
,
'
course_id
'
)
and
table_exists
(
'
course_groups_courseusergroup_users
'
)
and
index_exists
(
'
course_groups_courseusergroup_users
'
,
'
courseusergroup_id
'
)
and
index_exists
(
'
course_groups_courseusergroup_users
'
,
'
user_id
'
)
):
db
.
create_table
(
'
course_groups_courseusergroup
'
,
(
(
'
id
'
,
self
.
gf
(
'
django.db.models.fields.AutoField
'
)(
primary_key
=
True
)),
(
'
name
'
,
self
.
gf
(
'
django.db.models.fields.CharField
'
)(
max_length
=
255
)),
(
'
course_id
'
,
self
.
gf
(
'
xmodule_django.models.CourseKeyField
'
)(
max_length
=
255
,
db_index
=
True
)),
(
'
group_type
'
,
self
.
gf
(
'
django.db.models.fields.CharField
'
)(
max_length
=
20
)),
))
db
.
send_create_signal
(
'
course_groups
'
,
[
'
CourseUserGroup
'
])
# Adding unique constraint on 'CourseUserGroup', fields ['name', 'course_id']
db
.
create_unique
(
'
course_groups_courseusergroup
'
,
[
'
name
'
,
'
course_id
'
])
# Adding M2M table for field users on 'CourseUserGroup'
db
.
create_table
(
'
course_groups_courseusergroup_users
'
,
(
(
'
id
'
,
models
.
AutoField
(
verbose_name
=
'
ID
'
,
primary_key
=
True
,
auto_created
=
True
)),
(
'
courseusergroup
'
,
models
.
ForeignKey
(
orm
[
'
course_groups.courseusergroup
'
],
null
=
False
)),
(
'
user
'
,
models
.
ForeignKey
(
orm
[
'
auth.user
'
],
null
=
False
))
))
db
.
create_unique
(
'
course_groups_courseusergroup_users
'
,
[
'
courseusergroup_id
'
,
'
user_id
'
])
def
backwards
(
self
,
orm
):
# Removing unique constraint on 'CourseUserGroup', fields ['name', 'course_id']
...
...
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