File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -26,6 +26,7 @@ class DatabaseCreation(BaseDatabaseCreation):
2626 data_types = DataTypesWrapper ({
2727 #data_types = {
2828 'AutoField' : 'int IDENTITY (1, 1)' ,
29+ 'BigIntegerField' : 'bigint' ,
2930 'BooleanField' : 'bit' ,
3031 'CharField' : 'nvarchar(%(max_length)s)' ,
3132 'CommaSeparatedIntegerField' : 'nvarchar(%(max_length)s)' ,
@@ -35,8 +36,8 @@ class DatabaseCreation(BaseDatabaseCreation):
3536 'FileField' : 'nvarchar(%(max_length)s)' ,
3637 'FilePathField' : 'nvarchar(%(max_length)s)' ,
3738 'FloatField' : 'double precision' ,
39+ 'GenericIPAddressField' : 'nvarchar(39)' ,
3840 'IntegerField' : 'int' ,
39- 'BigIntegerField' : 'bigint' ,
4041 'IPAddressField' : 'nvarchar(15)' ,
4142 'NullBooleanField' : 'bit' ,
4243 'OneToOneField' : 'int' ,
You can’t perform that action at this time.
0 commit comments