honey trap

This commit is contained in:
edmondlang
2023-03-17 18:40:48 +08:00
parent f6082382bf
commit 7cf7fdec54
14 changed files with 415 additions and 4 deletions
@@ -0,0 +1,41 @@
<?php
use App\Classes\ValueObjects\Constants\ApprovalStatus;
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class SeasonalSegmentTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('seasonal_segment', function (Blueprint $table) {
$table->id();
$table->foreignId('company_id')->unsigned();
$table->string('status')->default(ApprovalStatus::APPROVED);
$table->foreignId('segment_id')->unsigned();
$table->timestamp('starting_on')->nullable();
$table->timestamp('ending_on')->nullable();
$table->softDeletes();
$table->timestamps();
$table->foreign('segment_id')->references('id')->on('segments');
$table->foreign('company_id')->references('id')->on('companies');
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
//
}
}