Ravi Singh
Ravi Singh
Hi @arcivanov , Can you please suggest anything?
Can you please guide what parameter should i add in the python logger configuration in order to add authentication?
Is there any plan to implement this?
Why is this not merged yet?
@sean29 Were you able to solve this? **Edit**: I was getting this because of inputting invalid value in the geography field in MSSQL database
@kitdarko Did you find any solution?
No, this does not support geometry fields.
@avinashs2401 If you manage it in the base model only, you can override the `HistoricalRecords` class and specify a custom attribute `DEFAULT_MODEL_NAME_PREFIX`. Otherwise you can mention the `history` field specifically...
@muneeb706 You could override the `HistoricalRecords`'s `create_history_model` method and add a logic using the model name being generated, to change the `attrs["Meta"].db_table` as per your requirements
@muneeb706 I'm thinking of something like the following, ``` class CustomHistoricalRecords(HistoricalRecords): def create_history_model(self, model, inherited): """ Creates a historical model to associate with the model provided. """ if not self.table_name:...