Dump existing data:
python3 manage.py dumpdata > datadump.json
Change settings.py to Postgres backend.
Make sure you can connect on PostgreSQL. Then:
# -*- coding: utf-8 -*- | |
"""Add permissions for proxy model. | |
This is needed because of the bug https://code.djangoproject.com/ticket/11154 | |
in Django (as of 1.6, it's not fixed). | |
When a permission is created for a proxy model, it actually creates if for it's | |
base model app_label (eg: for "article" instead of "about", for the About proxy | |
model). |
function validate_cpf(cpf) { | |
var sum, summod11; | |
cpf = cpf.replace(/[^0-9]/g, ''); | |
if(cpf.length != 11 || cpf.match(/^([0-9])\1+$/)) { | |
return false; | |
} | |
// 9 primeiros digitos do cpf | |
var digit = Array.prototype.slice.call(cpf, 0, 9); |