Your IP : 3.133.141.201


Current Path : /home/lentoinv/api.lentoria.com/database/migrations/
Upload File :
Current File : /home/lentoinv/api.lentoria.com/database/migrations/2022_09_07_154801_add_link_to_courses_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::table('courses', function (Blueprint $table) {
            $table->string('link')->nullable();
        });
    }

    /**
     * Reverse the migrations.
     *
     * @return void
     */
    public function down()
    {
        Schema::table('courses', function (Blueprint $table) {
            //
        });
    }
};

?>