Sid Gifari File Manager
🏠 Root
/
home2
/
meumer25
/
painelrioalimentos.meumercado.app
/
database
/
migrations
/
Editing: 2021_05_03_160034_add_callback_to_order.php
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class AddCallbackToOrder extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::table('orders', function (Blueprint $table) { $table->string('callback')->nullable(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('orders', function (Blueprint $table) { }); } }
Save
Cancel