32 lines
834 B
PHP
32 lines
834 B
PHP
<?php
|
|
|
|
use Illuminate\Database\Migrations\Migration;
|
|
use Illuminate\Database\Schema\Blueprint;
|
|
use Illuminate\Support\Facades\Schema;
|
|
|
|
return new class extends Migration
|
|
{
|
|
/**
|
|
* Run the migrations.
|
|
*/
|
|
public function up(): void
|
|
{
|
|
Schema::create('photos', function (Blueprint $table) {
|
|
$table->id();
|
|
$table->unsignedBigInteger('operation_id');
|
|
$table->timestamps();
|
|
$table->string('gambar'); //kalo laravel basically nyimpen nama file doang
|
|
$table->string('kategori'); //isinya bisa string 'pre', 'in', 'post'
|
|
$table->foreign('operation_id')->references('id')->on('operations');
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Reverse the migrations.
|
|
*/
|
|
public function down(): void
|
|
{
|
|
Schema::dropIfExists('photos');
|
|
}
|
|
};
|