Example #1
0
 public function __construct($conn)
 {
     parent::__construct($conn);
     /**
      * Auto increment.
      */
     $this->columnTypes['autoincrement'] = 'serial';
     $this->columnTypes['longbinary'] = 'bytea';
 }
Example #2
0
 public function __construct($conn)
 {
     parent::__construct($conn);
     /**
      * Auto increment.
      */
     $this->columnTypes['autoincrement'] = 'serial';
     $this->columnTypes['longbinary'] = 'bytea';
     $this->columnTypes['decimal'] = 'numeric (10,0)';
     // Same default than MySql (not used)
 }