sanchezzzhak / kak-clickhouse

Yii2 ext. ClickHouse
69 stars 43 forks source link

total improvements #2

Closed ZAYEC77 closed 7 years ago

ZAYEC77 commented 7 years ago

Hello, please, check out my PR, I tried to improve package in general. Particularly, error handling and data types mapping. Now it allows to write migration like:

    public function up()
    {
        $this->createTable('product', [
            'product_id' => $this->bigInteger(),
            'guid' => $this->bigInteger()->unsigned(),
            'active' => $this->boolean(),
        ]);
    }