Delivery Info Insert

This commit is contained in:
Mouhamed Lamine
2018-08-06 09:30:08 +08:00
parent 43fdca4bbe
commit 2e46ea8c2b
9 changed files with 6050 additions and 960 deletions
@@ -0,0 +1,32 @@
<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class RemoveBranchFromDeliveryinfos extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('deliveryinfos', function (Blueprint $table) {
$table->dropColumn('branch');
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::table('deliveryinfos', function (Blueprint $table) {
$table->string('branch');
});
}
}