$in = [
            ['name' => 'id', 'type' => 'int', 'length' => 10, 'auto_inc' => true],
            ['name' => 'name', 'type' => 'varchar', 'length' => 255, 'default' => '', 'not_null' => true],
            ['name' => 'active', 'type' => 'enum', 'length' => '\'0\',\'1\'', 'default' => '0', 'not_null' => true],
            ['key' => 'primary', 'key_cols' => 'id'],