One Hat Cyber Team
Your IP :
3.128.172.222
Server IP :
104.21.32.1
Server :
Linux agrigation-prod 5.15.0-67-generic #74-Ubuntu SMP Wed Feb 22 14:14:39 UTC 2023 x86_64
Server Software :
nginx/1.24.0
PHP Version :
7.4.33
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
home
/
forge
/
app.gftag.com
/
database
/
migrations
/
Edit File:
2024_02_23_101328_add_unit_to_items_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::table('items', function (Blueprint $table) { $table->string('unit')->nullable()->after('igst_rate'); }); } /** * Reverse the migrations. */ public function down(): void { Schema::table('items', function (Blueprint $table) { $table->dropColumn('unit'); }); } };
Simpan