Commit 6b97c1bd by Tyler Hallada

Add a rel_db_type to UnsignedBigIntAutoField

parent 26fcbefe
......@@ -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
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment