kuvia/database/migrations/2021_01_12_094048_gallery_main_image.php
2021-01-12 15:49:45 +01:00

32 lines
646 B
PHP

<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class GalleryMainImage extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table("galleries", function (Blueprint $table) {
$table->unsignedBigInteger("main_image")->nullable()->default(null);
$table->foreign('main_image')->references('id')->on('images');
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
//
}
}