jackfinal/hyperf-database-dm

A dm driver for hyperf/database.

dev-main 2024-06-25 02:00 UTC

This package is not auto-updated.

Last update: 2025-04-01 05:33:39 UTC


README

hyperf-database-dm

Hyperf-database-dm is an Dm Database Driver package for Hyperf. Hyperf-database-dm is an extension of Hyperf/Database that uses DM extension to communicate with Dm. Thanks to @yajra.

Documentations

Hyperf Version Compatibility

HyperfPackage
3.1.x3.1.x

Quick Installation

composer require jackfinal/hyperf-database-dm

Configuration (OPTIONAL)

You can set connection data in your .env files:

DB_DRIVER=dm
DB_HOST=192.168.45.132
DB_PORT=5236
DB_USERNAME=jack
DB_PASSWORD=1234

Then run your hyperf installation...

NOTICE

You can use $table->identity($column, $start = 1, $step = 1) to relace $table->bigIncrements('id'); Increment ID (primary key).

Schema::create('users', function (Blueprint $table) {
  $table->identity('id', 1, 1);
  $table->primary('id');
  $table->datetimes();
  $table->softDeletes();
  $table->comment('Table Comment');
  $table->mediumText('description');  
  $table->string('name', 100);
  $table->text('content');
});

License

The MIT License (MIT). Please see License File for more information.