Map existing = getTableSchema(null,null);
if (existing == null)
{
// Install the table.
HashMap map = new HashMap();
map.put(UID_FIELD,new ColumnDescription("VARCHAR(40)",false,false,null,null,false));
map.put(HOST_FIELD,new ColumnDescription("VARCHAR(255)",false,false,null,null,false));
map.put(PATH_FIELD,new ColumnDescription("VARCHAR(255)",false,false,null,null,false));
map.put(SDF_DATA_FIELD,new ColumnDescription("BLOB",false,true,null,null,false));
performCreate(map,null);
}
else
{
// Upgrade code, if needed, goes here