cybercog/laravel-clickhouse
最新稳定版本:0.2.0
Composer 安装命令:
composer require cybercog/laravel-clickhouse
包简介
ClickHouse migrations for Laravel
README 文档
README
Introduction
Laravel ClickHouse database integration. This package includes generation and execution of the ClickHouse database migrations in the Laravel application.
Features
- smi2/phpClickHouse client integration
- Migration creation
- Migration execution
Installation
Pull in the package through Composer.
composer require cybercog/laravel-clickhouse
Setup
Add environment variables in .env file.
CLICKHOUSE_HOST=localhost CLICKHOUSE_PORT=8123 CLICKHOUSE_USER=default CLICKHOUSE_PASSWORD= CLICKHOUSE_DATABASE=default
Configuration customization
Publish ClickHouse configuration.
php artisan vendor:publish --provider="Cog\Laravel\Clickhouse\ClickhouseServiceProvider" --tag=config
Edit config/clickhouse.php file.
Usage
ClickHouse client
You can use a singleton object smi2/phpClickHouse to query ClickHouse:
app(\ClickHouseDB\Client::class)->select( /* Query */ ); app(\ClickHouseDB\Client::class)->write( /* Query */ );
ClickHouse database migration
Create migration
php artisan make:clickhouse-migration create_example_table
New migration will be created in
database/clickhouse-migrationsdirectory.
Run migrations
php artisan clickhouse:migrate
To remove the interactive question during production migrations, you can use --force option.
php artisan clickhouse:migrate --force
Step
You can specify how many files need to be applied:
php artisan clickhouse:migrate --step=1
Value
0is default — all files
Rollback migrations
Rolling back migrations is intentionally unavailable. Migrations should go only forward.
Changelog
Detailed changes for each release are documented in the CHANGELOG.md.
License
Laravel ClickHousepackage is open-sourced software licensed under the MIT license by Anton Komarev.
🌟 Stargazers over time
About CyberCog
CyberCog is a Social Unity of enthusiasts. Research the best solutions in product & software development is our passion.
统计信息
- 总下载量: 118.66k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 137
- 点击次数: 1
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2022-03-17

