Request - Fitur attachment MCU di Prime Center
This commit is contained in:
Muhammad Fajar
2023-07-18 11:58:55 +07:00
parent 40da45c9ff
commit 5632e9ff29
9 changed files with 213 additions and 20 deletions

View File

@@ -0,0 +1,35 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('filesmcu', function (Blueprint $table) {
$table->increments('id');
$table->integer('member_id');
$table->string('path');
$table->integer('created_by');
$table->integer('updated_by')->default(0);
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('filesmcu');
}
};