smartEnergyView-backend/database/migrations/2022_05_12_174204_create_pld_table.php
2022-06-23 23:00:28 -03:00

39 lines
975 B
PHP

<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up(): void
{
Schema::create('pld', function (Blueprint $table) {
$table->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');
}
};