51 lines
1.2 KiB
PHP
51 lines
1.2 KiB
PHP
<?php
|
|
|
|
use Illuminate\Database\Migrations\Migration;
|
|
use Illuminate\Database\Schema\Blueprint;
|
|
use Illuminate\Support\Facades\Schema;
|
|
|
|
class AddNotaPekerjaan extends Migration
|
|
{
|
|
/**
|
|
* Run the migrations.
|
|
*
|
|
* @return void
|
|
*/
|
|
|
|
public function getActiveDB(){
|
|
$config_db = array_keys(config("database.connections"));
|
|
|
|
$db_connection = array_filter($config_db,function($connection){
|
|
try{
|
|
if($connection == 'mysql7')
|
|
return false;
|
|
|
|
$db = DB::connection($connection)->getPdo();
|
|
return true;
|
|
} catch(\Exception $e){
|
|
return false;
|
|
}
|
|
});
|
|
return $db_connection;
|
|
}
|
|
|
|
public function up()
|
|
{
|
|
Schema::connection('mysql7')->table('customer', function (Blueprint $table) {
|
|
$table->string('nota_pekerjaan')->nullable();
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Reverse the migrations.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function down()
|
|
{
|
|
Schema::table('customer', function (Blueprint $table) {
|
|
$table->dropColumn('nota_pekerjaan');
|
|
});
|
|
}
|
|
}
|