/**
  * PageColumn constructor.
  *
  * @param int $sort
  * @param Date $type
  * @param string $table
  */
 public function __construct($sort, Date $type, $table = '')
 {
     if ($type->isMulti()) {
         throw new StructException('RevisionColumns can not be multi value types!');
     }
     parent::__construct($sort, $type, 0, true, $table);
 }