whoami7 - Manager
:
/
home
/
n170823s
/
public_html
/
database
/
migrations
/
Upload File:
files >> //home/n170823s/public_html/database/migrations/2023_08_07_062217_create_contact_us_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::create('contact_us', function (Blueprint $table) { $table->id(); $table->string('title')->nullable(); $table->string('address')->nullable(); $table->string('email')->nullable(); $table->string('phone')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('contact_us'); } };
Copyright ©2021 || Defacer Indonesia