integerIncrements('id'); $table->decimal('dia_num', 30, 10)->nullable(); $table->decimal('hora', 30, 10)->nullable(); $table->text('submercado')->nullable(); $table->decimal('valor', 30, 10)->nullable(); $table->string('mes_ref')->nullable(); $table->decimal('dia_da_semana', 30, 10)->nullable(); $table->timestamps(); $table->softDeletes(); }); } /** * Reverse the migrations. * * @return void */ public function down(): void { Schema::dropIfExists('pld'); } };