Did you remove the apostrophe at the bottom as well?
I haven't used migrate / fake migrate in the past the way that you are implementing.
Are you intentionally trying to set it by table?
For me, on my DAL statement I'd include:
migrate_enabled=myconf.get('db.migrate')
fake_migrate_all=myconf.get('db.fake_migrate_all')
then in appconfig.ini I'd have:
[db]
uri = mssql4://sa/Web2PyPassword@TS-SQL2016R2/itassetdb
migrate = True
fake_migrate_all = True
Can you try that and see if it helps?
Also, I'd remove all the migrate stuff from auth and all the individual tables. I just set it globally, but that may be a personal preference kind of thing.
-Jim