D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
dateitor
/
www
/
database
/
migrations
/
Filename :
2024_03_12_063210_add_datetime_method_to_settings_table.php
back
Copy
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; use App\Models\Setting; return new class extends Migration { /** * Run the migrations. */ public function up(): void { Setting::create(['key' => 'datetime_method', 'value' => '1']); } /** * Reverse the migrations. */ public function down(): void { Setting::where('key', 'datetime_method')->delete(); } };