drop billing_amount column in supplier booking

This commit is contained in:
Jack Goh
2018-08-13 16:20:07 +08:00
parent c2d93d9ae0
commit 1201107b22
2 changed files with 30 additions and 3 deletions
@@ -25,8 +25,5 @@ class DropEtaInChinaBankSlipsTable extends Migration
*/
public function down()
{
Schema::table('china_bank_slips', function (Blueprint $table) {
//
});
}
}
@@ -0,0 +1,30 @@
<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class RemoveBillingAmountInSupplierBookings extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('supplier_bookings', function (Blueprint $table) {
$table->dropColumn('billing_amount');
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
//
}
}