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
bf059163
Commit
bf059163
authored
13 years ago
by
David Ormsbee
Browse files
Options
Downloads
Patches
Plain Diff
fix migration to reflect the right table name for registration
parent
167d2dd8
No related branches found
Branches containing commit
Tags
release-2021-02-09-14.12
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
courseware/migrations/0001_initial.py
+3
-3
3 additions, 3 deletions
courseware/migrations/0001_initial.py
courseware/migrations/0002_add_indexes.py
+1
-1
1 addition, 1 deletion
courseware/migrations/0002_add_indexes.py
courseware/models.py
+3
-1
3 additions, 1 deletion
courseware/models.py
with
7 additions
and
5 deletions
courseware/migrations/0001_initial.py
+
3
−
3
View file @
bf059163
...
...
@@ -37,7 +37,7 @@ class Migration(SchemaMigration):
db
.
send_create_signal
(
'
courseware
'
,
[
'
UserProfile
'
])
# Adding model 'Registration'
db
.
create_table
(
'
auth_
userprofile
'
,
(
db
.
create_table
(
'
auth_
registration
'
,
(
(
'
id
'
,
self
.
gf
(
'
django.db.models.fields.AutoField
'
)(
primary_key
=
True
)),
(
'
user
'
,
self
.
gf
(
'
django.db.models.fields.related.ForeignKey
'
)(
to
=
orm
[
'
auth.User
'
],
unique
=
True
)),
(
'
activation_key
'
,
self
.
gf
(
'
django.db.models.fields.CharField
'
)(
unique
=
True
,
max_length
=
32
,
db_index
=
True
)),
...
...
@@ -57,7 +57,7 @@ class Migration(SchemaMigration):
db
.
delete_table
(
'
auth_userprofile
'
)
# Deleting model 'Registration'
db
.
delete_table
(
'
auth_
userprofile
'
)
db
.
delete_table
(
'
auth_
registration
'
)
models
=
{
...
...
@@ -123,7 +123,7 @@ class Migration(SchemaMigration):
'
name
'
:
(
'
django.db.models.fields.CharField
'
,
[],
{
'
max_length
'
:
'
100
'
})
},
'
courseware.registration
'
:
{
'
Meta
'
:
{
'
object_name
'
:
'
Registration
'
,
'
db_table
'
:
"'
auth_
userprofile
'"
},
'
Meta
'
:
{
'
object_name
'
:
'
Registration
'
,
'
db_table
'
:
"'
auth_
registration
'"
},
'
activation_key
'
:
(
'
django.db.models.fields.CharField
'
,
[],
{
'
unique
'
:
'
True
'
,
'
max_length
'
:
'
32
'
,
'
db_index
'
:
'
True
'
}),
'
id
'
:
(
'
django.db.models.fields.AutoField
'
,
[],
{
'
primary_key
'
:
'
True
'
}),
'
user
'
:
(
'
django.db.models.fields.related.ForeignKey
'
,
[],
{
'
to
'
:
"
orm[
'
auth.User
'
]
"
,
'
unique
'
:
'
True
'
})
...
...
This diff is collapsed.
Click to expand it.
courseware/migrations/0002_add_indexes.py
+
1
−
1
View file @
bf059163
...
...
@@ -123,7 +123,7 @@ class Migration(SchemaMigration):
'
name
'
:
(
'
django.db.models.fields.CharField
'
,
[],
{
'
max_length
'
:
'
100
'
})
},
'
courseware.registration
'
:
{
'
Meta
'
:
{
'
object_name
'
:
'
Registration
'
,
'
db_table
'
:
"'
auth_
userprofile
'"
},
'
Meta
'
:
{
'
object_name
'
:
'
Registration
'
,
'
db_table
'
:
"'
auth_
registration
'"
},
'
activation_key
'
:
(
'
django.db.models.fields.CharField
'
,
[],
{
'
unique
'
:
'
True
'
,
'
max_length
'
:
'
32
'
,
'
db_index
'
:
'
True
'
}),
'
id
'
:
(
'
django.db.models.fields.AutoField
'
,
[],
{
'
primary_key
'
:
'
True
'
}),
'
user
'
:
(
'
django.db.models.fields.related.ForeignKey
'
,
[],
{
'
to
'
:
"
orm[
'
auth.User
'
]
"
,
'
unique
'
:
'
True
'
})
...
...
This diff is collapsed.
Click to expand it.
courseware/models.py
+
3
−
1
View file @
bf059163
import
uuid
from
django.db
import
models
from
django.contrib.auth.models
import
User
...
...
@@ -55,7 +57,7 @@ class Registration(models.Model):
account, but that account is inactive. Once the user clicks
on the activation key, it becomes active.
'''
class
Meta
:
db_table
=
"
auth_
userprofile
"
db_table
=
"
auth_
registration
"
user
=
models
.
ForeignKey
(
User
,
unique
=
True
)
activation_key
=
models
.
CharField
((
'
activation key
'
),
max_length
=
32
,
unique
=
True
,
db_index
=
True
)
...
...
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