PATH:
home
/
rwabteecom
/
public_html
/
database
/
migrations
/
Editing: 2022_01_27_041615_add_address_to_vcards_table.php
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; return new class extends Migration { /** * Run the migrations. */ public function up(): void { Schema::table('vcards', function (Blueprint $table) { $table->text('location_url')->nullable()->after('location'); }); } };
SAVE
CANCEL