2021_10_19_091721_create_eoffices_table.php 956 Bytes
<?php

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

class CreateEofficesTable extends Migration
{
    /**
     * Run the migrations.
     *
     * @return void
     */
    public function up()
    {
        Schema::create('eoffices', function (Blueprint $table) {
            $table->bigIncrements('id');
            $table->string('judul')->nulllable();
            $table->text('konten')->nullable(); 
            $table->string('image')->nullable();
            $table->foreignId('user_id')->references('id')->on('users');
            $table->timestamp('created_at')->nullable();
            $table->timestamp('updated_at')->nullable();
            $table->timestamp('deleted_at')->nullable();
        });
    }

    /**
     * Reverse the migrations.
     *
     * @return void
     */
    public function down()
    {
        Schema::dropIfExists('eoffices');
    }
}