I am trying to save the instance of the form to a different database.
Usually when executing a save on an object instance you will use object.save(using='db_alias'), which I assumed would be for the form.save() function.
Currently I am using...
form.save(using='db_alias')
This throws an error claiming save() got an unexpected keyword argument 'using'.
Do I need to override the save() function within this particular form to handle a db_alias argument? I wasn't able to find anything regarding this error when searching, so I am asking here as last resort for the best foot forward. Thanks in advance.