Hello, is there a possibility to prefix a table as in
$structure = new NotORM_Structure_Convention($primary = 'id',$foreign = '%s_id',$table = '%s',$prefix = 'prefix_');
but let it to be variable? I tried using getReferencedTable and getReferencingTable, but it works weird and in some cases it does not add the prefix. My reason is that I made a two lang website simply by duplicating tables and prefixing them with language code, however some tables are common for both (e.g. users) and they do not have prefix.
I want the NotORM interface then work as though there is no prefix.
Thanks a lot, MK