D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
forge
/
shaghela.online
/
database
/
migrations
/
Filename :
2021_12_01_073610_alter_app_settings.php
back
Copy
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class AlterAppSettings extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::table('app_settings', function (Blueprint $table) { $table->string('inquriy_email')->nullable()->default(null); $table->string('helpline_number')->nullable()->default(null); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('app_settings', function (Blueprint $table) { // }); } }