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