whoami7 - Manager
:
/
home
/
kckglobal
/
.trash
/
database
/
migrations
/
Upload File:
files >> /home/kckglobal/.trash/database/migrations/2023_02_01_085841_add_company_sign_contracts_table.php
<?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('contracts', function (Blueprint $table) { $table->string('company_sign')->nullable(); $table->date('sign_date')->nullable(); }); Schema::table('contract_signs', function (Blueprint $table) { $table->string('place')->nullable(); $table->string('date')->nullable(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('contracts'); Schema::dropIfExists('contract_signs'); } };
Copyright ©2021 || Defacer Indonesia