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