Sid Gifari File Manager
🏠 Root
/
home2
/
meumer25
/
painelbistroemcasa.meurestaurante.app
/
database
/
migrations
/
Editing: 2022_03_04_222417_add_image_to_branch_table.php
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class AddImageToBranchTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::table('branches', function (Blueprint $table) { $table->string('image')->nullable(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('branches', function (Blueprint $table) { $table->dropColumn('image'); }); } }
Save
Cancel