PK

ADDRLIN : /home/questend/.trash/database/migrations/
FLL :
Current File : /home/questend/.trash/database/migrations/2018_06_28_122438_create_wishlists_table.php

<?php

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

class CreateWishlistsTable extends Migration
{
    /**
     * Run the migrations.
     *
     * @return void
     */
    public function up()
    {
        Schema::create('wishlists', function (Blueprint $table) {
            $table->increments('id')->unsigned();
            $table->integer('wish_uid')->unsigned()->default(0);
            $table->integer('wish_pid')->unsigned()->default(0);
            $table->tinyInteger('wish_status')->unsigned()->default(1)->comment('0:inactive;1:active');           
            $table->timestamps();
            $table->softDeletes();
            $table->ipAddress('visitor')->default('0.0.0.0');
        });
    }

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


PK 99
E-SHOP || DASHBOARD
404

Page Not Found

It looks like you found a glitch in the matrix...

← Back to Home