zedisdog / laravel-schema-extend by zedisdog

supplement for eloquent migration
62,075
61
3
Package Data
Maintainer Username: zedisdog
Maintainer Contact: 2692273254@qq.com (zed)
Package Create Date: 2015-11-15
Package Last Update: 2022-05-26
Home Page:
Language: PHP
License: WTFPL
Last Refreshed: 2024-05-03 15:21:41
Package Statistics
Total Downloads: 62,075
Monthly Downloads: 548
Daily Downloads: 0
Total Stars: 61
Total Watchers: 3
Total Forks: 7
Total Open Issues: 0

laravel-schema-extend

License

  • support MySQL 'table comment'.
  • 'column comment' is built-in in greater than 5.1 version.
  • support variable length for integer/tinyint/mediumint/smallint/bigint

just extend the original class

Install

Require this package with composer using the following command:

composer require zedisdog/laravel-schema-extend

less than 5.5

modify the alias Schema in config/app.php:

'aliases' => [
    ...
    // 'Schema' => Illuminate\Support\Facades\Schema::class,
    'Schema'    => Jialeo\LaravelSchemaExtend\Schema::class,
],

great than 5.5

just modify use statement from

use Illuminate\Support\Facades\Schema;

to

use Jialeo\LaravelSchemaExtend\Schema;

in migrate files.

Usage

Schema::create('tests', function ($table) {
    //this is alredy built-in.
    $table->increments('id')->comment('column comment');
    
    $table->integer('int')->default(1)->length(1);
    $table->bigInteger('big')->default(1)->length(1);
    $table->smallInteger('small')->default(1)->length(1);
    $table->tinyInteger('tiny')->default(1)->length(1);
    $table->mediumInteger('medium')->default(1)->length(1);
    
    $table->comment = 'table comment';
    $table->autoIncrement = 100;
});

Thanks

PS.

sorry for my bad english