i've changed the app label doing this
class Model(models.Model):
pass
class Meta:
app_label = 'App Name'
db_table = 'app_table'
The table and application already existed, the problem is that when i go to the admin interface, only the superusers can view the app, and other users not, i tried to add permissions to the other user but it does not appear in the permissions box.
Thanks in advance!