id(); $table->unsignedBigInteger('user_id')->nullable(); $table->string('token'); $table->string('device_id'); $table->string('device_name'); $table->string('device_type'); // $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('firebases'); } }