File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -36,6 +36,7 @@ class DatabaseCreation(BaseDatabaseCreation):
3636 'FilePathField' : 'nvarchar(%(max_length)s)' ,
3737 'FloatField' : 'double precision' ,
3838 'IntegerField' : 'int' ,
39+ 'BigIntegerField' : 'bigint' ,
3940 'IPAddressField' : 'nvarchar(15)' ,
4041 'NullBooleanField' : 'bit' ,
4142 'OneToOneField' : 'int' ,
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ class DatabaseIntrospection(BaseDatabaseIntrospection):
77 # Map type codes to Django Field types.
88 data_types_reverse = {
99 SQL_AUTOFIELD : 'AutoField' ,
10- Database .SQL_BIGINT : 'IntegerField ' ,
10+ Database .SQL_BIGINT : 'BigIntegerField ' ,
1111 #Database.SQL_BINARY: ,
1212 Database .SQL_BIT : 'BooleanField' ,
1313 Database .SQL_CHAR : 'CharField' ,
You can’t perform that action at this time.
0 commit comments