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