Files
exchange-2.0/database/migrations/2023_03_16_223623_seasonal_segment_table.php
T
edmondlang 7cf7fdec54 honey trap
2023-03-17 18:40:48 +08:00

42 lines
1.1 KiB
PHP

<?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()
{
//
}
}