I added the following to my model:
class Meta:
db_table = 'history'
permissions = (
("View", u"View history log"),
)
And I ran syncdb but my content type wasn't added nor was there an entry made to the auth_permission table. I'm looking for a way to add this permission so I can give it to certain users.
Btw, I didn't have a admin.py file. I tried adding one to my application and I tried registering my History model but when I run syncdb still nothing.
Note:This is a legacy database.