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

<?php

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

class CreatePhotosSalleSalleTable extends Migration
{
    /**
     * Run the migrations.
     *
     * @return void
     */
    public function up()
    {
        Schema::create('photos_salle_salle', function (Blueprint $table) {
            $table->unsignedBigInteger('photos_salle_id');
            $table->unsignedBigInteger('salle_id');
        });
    }

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