<?php

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

class CreateMenusTable extends Migration
{
    /**
     * Run the migrations.
     *
     * @return void
     */
    public function up()
    {
        Schema::create('swp_menus', function (Blueprint $table) {
            $table->string('id', 36)->primary();
            $table->string('name');
            $table->string('url')->nullable();
            $table->string('mode')->nullable();
            $table->boolean('status')->nullable();
            $table->string('parent', 36)->nullable();
            $table->integer('urutan')->nullable();
            $table->integer('parentlevel')->nullable();
            $table->integer('level')->nullable();
            $table->string('userid_created', 36)->nullable();
            $table->string('userid_updated', 36)->nullable();
            $table->timestamps();
        });
    }

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