⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.1
Server IP:
185.238.29.86
Server:
Linux server2 6.8.12-6-pve #1 SMP PREEMPT_DYNAMIC PMX 6.8.12-6 (2024-12-19T19:05Z) x86_64
Server Software:
nginx/1.18.0
PHP Version:
8.1.31
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
var
/
www
/
muhasebe
/
database
/
migrations
/
View File Name :
2019_03_17_140539_create_media_files_table.php
<?php use Illuminate\Support\Facades\Schema; use Illuminate\Database\Schema\Blueprint; use Illuminate\Database\Migrations\Migration; class CreateMediaFilesTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('media_files', function (Blueprint $table) { $table->bigIncrements('id'); $table->string('file_name',255)->nullable(); $table->string('file_path',255)->nullable(); $table->string('file_size',255)->nullable(); $table->string('file_type',255)->nullable(); $table->string('file_extension',255)->nullable(); $table->string('driver',255)->nullable(); $table->tinyInteger('is_private')->nullable()->default(0); $table->integer('create_user')->nullable(); $table->integer('update_user')->nullable(); $table->softDeletes(); $table->integer('app_id')->nullable(); $table->integer('app_user_id')->nullable(); $table->integer('file_width')->nullable(); $table->integer('file_height')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('media_files'); } }