PHP code example of hughcube / laravel-migration

1. Go to this page and download the library: Download hughcube/laravel-migration library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

hughcube / laravel-migration example snippets


#!/usr/bin/env php


use Symfony\Component\Console\Input\ArgvInput;
use Symfony\Component\Console\Output\ConsoleOutput;

/*
|--------------------------------------------------------------------------
| Create The Application
|--------------------------------------------------------------------------
|
| First we need to get an application instance. This creates an instance
| of the application / container and bootstraps the application so it
| is ready to receive HTTP / Console requests from the environment.
|
*/
$app = hCube\Laravel\Migrations\ServiceProvider::class);

exit($kernel->handle(new ArgvInput, new ConsoleOutput));




use Illuminate\Database\Migrations\Migration;
use HughCube\Laravel\Migrations\Blueprint;
use HughCube\Laravel\Migrations\Schema;

class CreateExampleTable extends Migration
{
    /**
     * Run the migrations.
     *
     * @return void
     */
    public function up()
    {
        Schema::create('example', function (Blueprint $table) {
            $table->id();
            $table->timestamps();
            
            /** Set table comment */
            $table->comment = "Example";
        });
    }

    /**
     * Reverse the migrations.
     *
     * @return void
     */
    public function down()
    {
        Schema::dropIfExists('example');
    }
}