One Hat Cyber Team
Your IP :
172.71.255.82
Server IP :
188.114.97.7
Server :
Linux advantage-project 5.14.0-503.26.1.el9_5.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Feb 19 16:28:19 UTC 2025 x86_64
Server Software :
Apache/2.4.62 (Rocky Linux) OpenSSL/3.2.2
PHP Version :
8.3.17
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
var
/
www
/
html
/
database
/
migrations
/
View File Name :
2024_08_17_183238_update_dictionary_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. */ public function up(): void { Schema::dropIfExists('dictionary'); Schema::create('dictionary', function (Blueprint $table) { $table->bigIncrements('id'); $table->string('slug',255)->nullable(); $table->string('image','255')->nullable(); $table->string('name_en',255); $table->text( 'content_en')->nullable(); $table->string('name_tr',255)->nullable(); $table->text( 'content_tr')->nullable(); $table->string('name_de',255)->nullable(); $table->text( 'content_de')->nullable(); $table->string('name_it',255)->nullable(); $table->text( 'content_it')->nullable(); $table->string('name_gr',255)->nullable(); $table->text( 'content_gr')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('dictionary'); } };