Show order info reference on pending orders

This commit is contained in:
Deon George
2020-04-22 23:23:54 +10:00
parent 1934c6dfeb
commit 3b168af492
5 changed files with 41 additions and 3 deletions

View File

@@ -0,0 +1,28 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class ChangeServiceNumberAdsl extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
DB::statement('ALTER TABLE ab_service__adsl CHANGE COLUMN service_number service_number varchar(10) DEFAULT NULL');
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
DB::statement('ALTER TABLE ab_service__adsl CHANGE COLUMN service_number service_number varchar(10) NOT NULL DEFAULT \'\'');
}
}