Marcelo Meza

Results 3 issues of Marcelo Meza

I am using role-permissions on a multi tenant system. For the shared tenant I run sync_roles at the beginning of the migrations and for each tenant sync_roles is run programmatically...

How can I generate a table with an x number of columns based on a queryset? I explain: ``` class Assignment(models.Model): name = ... class Student(models.Model): first_name = ... class...

I am using a multi tenant app, and executing makemigrations generates a new migration in django-categories. ``` from django.db import migrations, models import tenant_schemas.storage class Migration(migrations.Migration): dependencies = [ ('categories',...