コード例 #1
0
ファイル: PgsqlSchema.php プロジェクト: withhope/HIT-Survey
 public function __construct($conn)
 {
     parent::__construct($conn);
     /**
      * Auto increment.
      */
     $this->columnTypes['autoincrement'] = 'serial';
     $this->columnTypes['longbinary'] = 'bytea';
 }
コード例 #2
0
ファイル: PgsqlSchema.php プロジェクト: mfavetti/LimeSurvey
 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)
 }