increments('id'); $table->integer('usuario_id')->nullable(); $table->date('fecha')->nullable(); $table->time('hora')->nullable(); $table->integer('camabaja_id')->nullable(); $table->string('conductor_camabaja', 30)->nullable(); $table->string('policia', 30)->nullable(); $table->integer('clase_vehiculo_id')->nullable(); $table->string('placa', 10)->nullable(); $table->string('pais', 20)->nullable(); $table->string('marca', 20)->nullable(); $table->string('modelo', 20)->nullable(); $table->string('color', 30)->nullable(); $table->string('id_chasis', 25)->nullable(); $table->string('id_motor', 25)->nullable(); $table->boolean('encustodia')->nullable(); $table->string('comparendo', 30)->nullable(); $table->boolean('servicio_grua')->nullable(); $table->date('fecha_salida')->nullable(); $table->time('hora_salida')->nullable(); $table->enum('facturado', ['Si','No'])->nullable(); $table->string('observaciones', 255)->nullable(); $table->enum('estado', ['Entregado','Pendiente'])->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('ingreso_vehiculos'); } }