Your IP : 216.73.217.77


Current Path : /home/users/unlimited/www/whatsapp-crm/database/migrations/
Upload File :
Current File : /home/users/unlimited/www/whatsapp-crm/database/migrations/2024_03_20_051807_create_faqs_table.php

<?php

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

class CreateFaqsTable extends Migration
{
    /**
     * Run the migrations.
     *
     * @return void
     */
    public function up()
    {
        Schema::create('faqs', function (Blueprint $table) {
            $table->bigIncrements('id');
            $table->string('question', 255)->nullable();
            $table->string('answer', 255)->nullable();
            $table->integer('status')->default(0);
            $table->timestamps();
        });
    }

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