Viewing File: /htdocs/atito2/database/migrations/2023_11_10_000014_create_video_salles_table.php

<?php

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

class CreateVideoSallesTable extends Migration
{
    /**
     * Run the migrations.
     *
     * @return void
     */
    public function up()
    {
        Schema::create('video_salles', function (Blueprint $table) {
            $table->bigIncrements('id');
            $table->string('lien_video');
            $table->string('photo')->nullable();

            $table->timestamps();
        });
    }

    /**
     * Reverse the migrations.
     *
     * @return void
     */
    public function down()
    {
        Schema::dropIfExists('video_salles');
    }
}
Back to Directory File Manager