string('phone_number')->nullable()->default(null)->after('verify_code'); $table->string('slack_webhook_url')->nullable()->default(null)->after('phone_number'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('subscribers', function (Blueprint $table) { $table->dropColumn(['phone_number', 'slack_webhook_url']); }); } }