コード例 #1
0
 public function __construct($conn)
 {
     parent::__construct($conn);
     /**
      * Auto increment.
      */
     $this->columnTypes['autoincrement'] = 'int(11) NOT NULL AUTO_INCREMENT';
     $this->columnTypes['longbinary'] = 'longblob';
 }
コード例 #2
0
ファイル: MysqlSchema.php プロジェクト: jmstan/craft-website
 /**
  * Constructor.
  *
  * @param \CDbConnection $conn The database connection.
  */
 public function __construct($conn)
 {
     parent::__construct($conn);
     $this->columnTypes['mediumtext'] = 'mediumtext';
 }