update migration
This commit is contained in:
@@ -14,8 +14,8 @@ return new class extends Migration
|
|||||||
public function up()
|
public function up()
|
||||||
{
|
{
|
||||||
Schema::table('request_logs', function (Blueprint $table) {
|
Schema::table('request_logs', function (Blueprint $table) {
|
||||||
$table->dateTime('created_final_at')->default(null);
|
$table->dateTime('created_final_at')->nullable()->default(null);
|
||||||
$table->bigInteger('created_final_by')->default(null);
|
$table->bigInteger('created_final_by')->nullable()->default(null);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -0,0 +1,32 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
use Illuminate\Database\Migrations\Migration;
|
||||||
|
use Illuminate\Database\Schema\Blueprint;
|
||||||
|
use Illuminate\Support\Facades\Schema;
|
||||||
|
|
||||||
|
return new class extends Migration
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* Run the migrations.
|
||||||
|
*
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
public function up()
|
||||||
|
{
|
||||||
|
Schema::table('organizations', function (Blueprint $table) {
|
||||||
|
$table->string('corporate_id_partner')->after('part_of')->nullable()->default(null);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Reverse the migrations.
|
||||||
|
*
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
public function down()
|
||||||
|
{
|
||||||
|
Schema::table('organizations', function (Blueprint $table) {
|
||||||
|
$table->dropColumn('corporate_id_partner');
|
||||||
|
});
|
||||||
|
}
|
||||||
|
};
|
||||||
Reference in New Issue
Block a user