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

<?php

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

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

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

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