daniel-de-wit / laravel-mysql-move-column
A Laravel package for simplifying rearranging MySQL database columns
1.0.0
2025-03-31 12:07 UTC
Requires
- php: ^7.4 || ^8.0
- illuminate/database: ^9.0 || ^10.0 || ^11.0 || ^12.0
Requires (Dev)
- larastan/larastan: ^3.0
- laravel/pint: ^1.20
- orchestra/testbench: ^10.1
- php-coveralls/php-coveralls: ^2.4
- phpstan/phpstan-mockery: ^2.0
- phpstan/phpstan-phpunit: ^2.0
- phpunit/phpunit: ^11.0
- rector/rector: ^2.0
README
A Laravel package for simplifying rearranging MySQL database columns.
Installation
You can install the package via composer:
composer require daniel-de-wit/laravel-mysql-move-column
The package is loaded using Package Discovery, when disabled read Manual Installation.
Usage
The method moveColumn
is made available for moving a MySQl column to a new position.
<?php declare(strict_types=1); use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; return new class extends Migration { public function up(): void { Schema::table('users', function (Blueprint $table): void { $table->moveColumn('name', 'id'); }); } };
Manual Installation
When disabled, register the LaravelMySQLMoveColumnServiceProvider manually by adding it to your config/app.php
/* * Package Service Providers... */ DanielDeWit\LaravelMySQLMoveColumnServiceProvider\Providers\LaravelMySQLMoveColumnServiceProvider::class,
Testing
composer test
Credits
License
The MIT License (MIT). Please see License File for more information.