id(); $table->string('uid'); $table->string('device_id'); $table->string('type'); $table->integer('is_clip')->default(0); $table->string('name'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('push_deer_devices'); } }