One Hat Cyber Team
Your IP :
3.142.98.191
Server IP :
103.133.214.160
Server :
Linux venus.ewebguru.net 4.18.0-553.22.1.el8_10.x86_64 #1 SMP Tue Sep 24 05:16:59 EDT 2024 x86_64
Server Software :
Apache/2
PHP Version :
8.1.30
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
home
/
praval
/
public_html
/
core
/
database
/
migrations
/
View File Name :
2023_10_10_151706_ticket_mail_settings_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 { if(Schema::hasColumn('settings', 'ticket_mail')) return; Schema::table('settings', function (Blueprint $table) { $table->tinyInteger('ticket_mail')->default(0); }); } /** * Reverse the migrations. */ public function down(): void { Schema::table('settings', function (Blueprint $table) { // }); } };