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_06_12_070820_modify_faqs_table.php

<?php

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

return new class extends Migration
{
    /**
     * Run the migrations.
     */
    public function up(): void
    {
        Schema::table('faqs', function (Blueprint $table) {
            $table->text('question')->nullable()->change();
            $table->text('answer')->nullable()->change();
        });
    }

    /**
     * Reverse the migrations.
     */
    public function down(): void
    {
        Schema::table('faqs', function (Blueprint $table) {
            $table->string('question', 255)->nullable()->change();
            $table->string('answer', 255)->nullable()->change();
        });
    }
};