File "2019_01_18_095308_create_faq_table.php"

Full Path: /home/isoftco/public_html/hrm/database/migrations/2019_01_18_095308_create_faq_table.php
File size: 847 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

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

class CreateFaqTable extends Migration
{
    /**
     * Run the migrations.
     *
     * @return void
     */
    public function up()
    {
        Schema::create('faq', function (Blueprint $table) {
            $table->increments('id');
            $table->string('title');
            $table->text('content_text');
            $table->integer('faq_category_id')->unsigned();
            $table->foreign('faq_category_id')->references('id')->on('faq_category')->onUpdate('cascade')->onDelete('cascade');
            $table->timestamps();
        });
    }

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