Files
izyim/database/migrations/2018_11_30_195330_create_schedules_table.php
T
Omair Saleh 919e0252f7 large commit
2019-06-03 10:29:08 +08:00

39 lines
864 B
PHP

<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateSchedulesTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('schedules', function (Blueprint $table) {
$table->increments('id');
$table->integer('type');
$table->integer('arrangement_id');
$table->date('ETD');
$table->date('ETA');
$table->integer('status')->default(0);
$table->string('issue_remark')->nullable();
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('shipping_schedule');
}
}