kuvia/database/migrations/2021_01_12_094048_gallery_m...

33 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()
{
//
}
}