getTable(), function (Blueprint $table) { $table->string('fcm_token')->primary(); $table->string('cod_usuario', 60)->nullable(); $table->string('details')->nullable(); $table->string('type', 30)->nullable(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists( "BS." . (new \UsersFirebaseToken)->getTable() ); } }