public void doBuild() throws TorqueException
{
dbMap = Torque.getDatabaseMap("default");
dbMap.addTable("PORTLET_PARAMETER");
TableMap tMap = dbMap.getTable("PORTLET_PARAMETER");
tMap.setPrimaryKeyMethod(TableMap.NATIVE);
tMap.setPrimaryKeyMethodInfo("PORTLET_PARAMETER");
tMap.addPrimaryKey("PORTLET_PARAMETER.ID", new Long(0));
tMap.addColumn("PORTLET_PARAMETER.NAME", new String());
tMap.addColumn("PORTLET_PARAMETER.VALUE", new String());
tMap.addColumn("PORTLET_PARAMETER.TYPE", new String());
tMap.addColumn("PORTLET_PARAMETER.HIDDEN", new Integer(0));
tMap.addColumn("PORTLET_PARAMETER.ROLE", new String());
tMap.addColumn("PORTLET_PARAMETER.CACHEDONVALUE", new Integer(0));
tMap.addColumn("PORTLET_PARAMETER.CACHEDONNAME", new Integer(0));
tMap.addColumn("PORTLET_PARAMETER.TITLE", new String());
tMap.addColumn("PORTLET_PARAMETER.DESCRIPTION", new String());
tMap.addColumn("PORTLET_PARAMETER.IMAGE", new String());
tMap.addForeignKey(
"PORTLET_PARAMETER.PORTLET_ID", new Long(0) , "PORTLET" ,
"ID");
tMap.addColumn("PORTLET_PARAMETER.SECURITY", new String());
}