Your IP : 18.226.180.253
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('instructors', function (Blueprint $table) {
$table->id();
$table->integer('user_id');
$table->longtext('biography')->nullable();
$table->string('headline')->nullable();
$table->string('language')->nullable();
$table->string('twitter')->nullable();
$table->string('facebook')->nullable();
$table->string('linkedin')->nullable();
$table->string('youtube')->nullable();
$table->string('website_url')->nullable();
$table->integer('status')->default(1);
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('instructors');
}
};