public void doBuild() throws TorqueException
{
dbMap = Torque.getDatabaseMap("default");
dbMap.addTable("portlet");
TableMap tMap = dbMap.getTable("portlet");
tMap.setPrimaryKeyMethod(TableMap.NATIVE);
tMap.setPrimaryKeyMethodInfo("portlet_SEQ");
tMap.addPrimaryKey("portlet.ID", new Long(0));
tMap.addColumn("portlet.NAME", new String());
tMap.addColumn("portlet.HIDDEN", new Integer(0));
tMap.addColumn("portlet.CLASSNAME", new String());
tMap.addColumn("portlet.TYPE", new String());
tMap.addColumn("portlet.APPLICATION", new Integer(0));
tMap.addColumn("portlet.PARENT", new String());
tMap.addColumn("portlet.URL", new String());
tMap.addColumn("portlet.CACHED_ON_URL", new Integer(0));
tMap.addColumn("portlet.TITLE", new String());
tMap.addColumn("portlet.DESCRIPTION", new String());
tMap.addColumn("portlet.IMAGE", new String());
tMap.addColumn("portlet.SECURITY", new String());
}