I would like to use SQL Server Filestream feature to store files (mainly large images) from a Django application. Currently I am using django-mssql as the database backend for my Django project. I don't think there is any existing model field in that package that is linked to a Filestream column in SQL Server.
What would be the best way to use the filestream feature from Django ? Are there any existing packages ? Or do I need to implement my own custom model field, inherited from Django's built-in fields (FileField or BinaryField) ?
Thanks !