update history corporate

This commit is contained in:
2023-09-22 10:53:03 +07:00
parent 969eb93509
commit 72958019f1
8 changed files with 87 additions and 11 deletions

View File

@@ -0,0 +1,34 @@
<?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('exclusion_imports', function (Blueprint $table) {
$table->id();
$table->integer('corporate_id');
$table->string('file_name');
$table->string('file_path');
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('exclusion_imports');
}
};