Actions
Bug #1860
closedproblem with dbo postgres using schema and foreign keys
Start date:
04/22/2013
Due date:
% Done:
0%
Estimated time:
Description
The problem is, when I use for example a class User mapped as mapClass("info.user")
and I hava another class InfoUser that as a foreign key referrenced to User mapped as ("info.info_user")
when call the function to create tables, It does generate the sql script like this
create table "info"."info_user" (...);
untill now it's fine but later
alter table "info.info_user" ...constraint ...
and the problem is the difference with the double quotes, when creating "info"."info_user" and when altering the table "info.info_user" which gives me a message erro saying that the table "info.info_user" does not exist...
thanks...
Updated by Koen Deforche over 11 years ago
- Status changed from New to Resolved
- Assignee set to Koen Deforche
- Target version set to 3.3.1
Hey,
Thanks for catching this. A fix is on its way.
Regards,
koen
Updated by Koen Deforche over 11 years ago
- Status changed from Resolved to Closed
Actions