AutoAuditDrop missing table name
description
The bug is in pAutoAuditDrop here:
If Exists (select * from sys.objects where name = 'Created_df')
You need to change it to:
If Exists (select * from sys.objects where name = @TableName + '_Created_df')
The bug exists for each field: Created, Modified, RowVersion.