Your IP : 18.118.151.211


Current Path : /home/lentoinv/api.lentoria.com/database/migrations/
Upload File :
Current File : //home/lentoinv/api.lentoria.com/database/migrations/2022_07_26_070527_create_instructors_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.
     *
     * @return void
     */
    public function up()
    {
        Schema::create('instructors', function (Blueprint $table) {
            $table->id();
            $table->integer('user_id');
            $table->longtext('bio');
            $table->integer('status')->default(1);
            $table->timestamps();
        });
    }

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

?>