add loading date for container table

This commit is contained in:
omair saleh
2021-10-01 17:35:19 +08:00
parent 973ab58818
commit c6e222caf2
6 changed files with 29 additions and 8 deletions
@@ -22,6 +22,7 @@ class CreateContainersTable extends Migration
$table->string('container_number')->nullable();
$table->integer('container_type')->default(ContainerTypes::FORTY_FEET_DRY_CONTAINER);
$table->string('seal_reference')->nullable();
$table->timestamp('loading_date')->nullable();
$table->integer('status')->default(ApprovalStatus::PENDING_SUBMISSION);
$table->softDeletes();
$table->timestamps();