whoami7 - Manager
:
/
home
/
kckglobal
/
.trash
/
database
/
migrations
/
Upload File:
files >> /home/kckglobal/.trash/database/migrations/2022_12_01_070705_create_leave_files_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::create('leave_files', function (Blueprint $table) { $table->id(); $table->integer('company_id')->unsigned()->nullable(); $table->foreign('company_id') ->references('id') ->on('companies') ->onDelete('cascade') ->onUpdate('cascade'); $table->unsignedInteger('user_id')->index('leave_files_user_id_foreign'); $table->unsignedInteger('leave_id')->index('leave_files_leave_id_foreign'); $table->string('filename'); $table->string('hashname')->nullable(); $table->string('size')->nullable(); $table->unsignedInteger('added_by')->nullable()->index('leave_files_added_by_foreign'); $table->unsignedInteger('last_updated_by')->nullable()->index('leave_files_last_updated_by_foreign'); $table->foreign(['added_by'])->references(['id'])->on('users')->onUpdate('CASCADE')->onDelete('SET NULL'); $table->foreign(['last_updated_by'])->references(['id'])->on('users')->onUpdate('CASCADE')->onDelete('SET NULL'); $table->foreign(['leave_id'])->references(['id'])->on('leaves')->onUpdate('CASCADE')->onDelete('CASCADE'); $table->foreign(['user_id'])->references(['id'])->on('users')->onUpdate('CASCADE')->onDelete('CASCADE'); $table->timestamps(); }); Schema::table('employee_leave_quotas', function (Blueprint $table) { $table->double('no_of_leaves')->change(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('leave_files'); } };
Copyright ©2021 || Defacer Indonesia