{ TABLE hydrograph row size = 652 number of columns = 10 index size = 329 
              }
create table hydrograph 
  (
    rfc_name char(64) not null ,
    basin_name char(64) not null ,
    layer_name char(64) not null ,
    basin_id integer not null ,
    hydrograph_name char(64) not null ,
    algorithm char(64) not null ,
    velocity_method char(64) not null ,
    duration float not null ,
    edited char(1) not null ,
    file_name char(255) not null ,
    unique (hydrograph_name) ,
    unique (file_name) 
  );
revoke all on hydrograph from "public";






