Edit File: 2023_04_12_172346_create_fqs_table.php
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateFqsTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('fqs', function (Blueprint $table) { $table->id(); $table->text('question')->nullable(); $table->text('answer')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('fqs'); } }
Back to File Manager