/
home
/
u694682534
/
domains
/
blackbooks.me
/
public_html
/
almaher2
/
database
/
migrations
/
Upload File
HOME
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; return new class extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::table('business', function (Blueprint $table) { $table->text('enabled_modules') ->after('currency_symbol_placement') ->nullable(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('business', function (Blueprint $table) { // }); } };