Posts by Eliu Moraes • 11 points
3 posts
-
0
votes2
answers124
viewsA: ALTER TABLE CHANGE is not renaming constraints automatically on the production server
In Postgres I would use a CASCADE, because what is preventing is not the table that is being renamed, but the ones that use it as a dependency. I don’t have a Mysql environment here, but you could…
mariadbanswered Eliu Moraes 11 -
0
votes1
answer66
viewsA: When passing JSON object received from DJANGO to Datatables with Javascript the table is not populated generating infinite processing
I managed to solve the problem. I had to change the format of the return data in my view: from django.views.generic.list import ListView from django.http import JsonResponse from django.shortcuts…
-
1
votes1
answer66
viewsQ: When passing JSON object received from DJANGO to Datatables with Javascript the table is not populated generating infinite processing
I am performing the passage of lines that will compose a table in the Datatables pattern through Django. If I do the DOM insertion, I can handle it by calling the Datatables function via JS. The…