%PDF- %PDF-
Mini Shell

Mini Shell

Direktori : /var/www/html/digiprint/database/migrations/
Upload File :
Create Path :
Current File : /var/www/html/digiprint/database/migrations/2018_02_04_165314_AddOrderColumnToTechnologyTable.php

<?php

use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;

class AddOrderColumnToTechnologyTable extends Migration
{
    /**
     * Run the migrations.
     *
     * @return void
     */
    public function up()
    {
        Schema::table('technologies', function ($table) {
            $table->integer('order');
        });
    }

    /**
     * Reverse the migrations.
     *
     * @return void
     */
    public function down()
    {
        chema::table('technologies', function ($table) {
            $table->dropColumn('order');
        });
    }
}

Zerion Mini Shell 1.0