hello,

as text, ntext, image(blob), are deprecated,
I would suggest to change these in
varchar(max), nvarchar(max), varbinary(max)

Assuming this is a correct suggestion,
would it be enough to change the following

    'mssql': {
        'boolean': 'BIT',
        'string': 'VARCHAR(%(length)s)',
        'text': 'TEXT',
        'password': 'VARCHAR(%(length)s)',
        'blob': 'IMAGE',

into

    'mssql': {
        'boolean': 'BIT',
        'string': 'VARCHAR(%(length)s)',
        'text': 'VARCHAR(%(length)s)',
        'password': 'VARCHAR(%(length)s)',
        'blob': 'VARBINARY(max)',

or should there be mad other changes ?

thanks,
Stef Mientki

Reply via email to