yii\db\SchemaBuilderTrait::bigPrimaryKey PHP 메소드

bigPrimaryKey() 공개 메소드

Creates a big primary key column.
부터: 2.0.6
public bigPrimaryKey ( integer $length = null ) : ColumnSchemaBuilder
$length integer column size or precision definition. This parameter will be ignored if not supported by the DBMS.
리턴 ColumnSchemaBuilder the column instance which can be further customized.
    public function bigPrimaryKey($length = null)
    {
        return $this->getDb()->getSchema()->createColumnSchemaBuilder(Schema::TYPE_BIGPK, $length);
    }