Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
edx-platform
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
edx
edx-platform
Commits
6b97c1bd
Commit
6b97c1bd
authored
7 years ago
by
Tyler Hallada
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add a rel_db_type to UnsignedBigIntAutoField
parent
26fcbefe
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
0 deletions
+10
-0
lms/djangoapps/coursewarehistoryextended/fields.py
+10
-0
No files found.
lms/djangoapps/coursewarehistoryextended/fields.py
View file @
6b97c1bd
...
...
@@ -23,3 +23,13 @@ class UnsignedBigIntAutoField(AutoField):
return
"BIGSERIAL"
else
:
return
None
def
rel_db_type
(
self
,
connection
):
if
connection
.
settings_dict
[
'ENGINE'
]
==
'django.db.backends.mysql'
:
return
"bigint UNSIGNED"
elif
connection
.
settings_dict
[
'ENGINE'
]
==
'django.db.backends.sqlite3'
:
return
"integer"
elif
connection
.
settings_dict
[
'ENGINE'
]
==
'django.db.backends.postgresql_psycopg2'
:
return
"BIGSERIAL"
else
:
return
None
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment