table = "public.forecast"; $this->primary_key = "f_id"; /* * List of columns */ $this->name = array( "f_id" => "f_id" , "f_name" => "f_name" , "f_start_date" => "f_start_date" , "f_end_date" => "f_end_date" ); /* * Type of columns */ $this->type = array( "f_id" => "numeric" , "f_name" => "text" , "f_start_date" => "numeric" , "f_end_date" => "numeric" ); $this->default = array( "f_id" => "auto" ); $this->date_format = "DD.MM.YYYY"; parent::__construct($p_cn, $p_id); } }