¿Empezamos con la migración de metricas_mensuales ? Sí. Perfecto. Vamos a crear la migración para la tabla metricas_mensuales . 📊 Crear la Migración bash php artisan make:migration create_metricas_mensuales_table php // database/migrations/xxxx_xx_xx_create_metricas_mensuales_table.php <?php use Illuminate \ Database \ Migrations \ Migration ; use Illuminate \ Database \ Schema \ Blueprint ; use Illuminate \ Support \ Facades \ Schema ; return new class extends Migration { public function up ( ) : void { Schema :: create ( 'metricas_mensuales' , function ( Blueprint $table ) { $table -> id ( ) ; // Período $table -> year ( 'anio' ) ; $table -> unsignedTinyInteger ( 'mes' ) ; // KPIs financieros $table -> decimal ( 'valor_presupuestos_aceptados' , 12 , 2 ) -> default ( 0 ) ; $table -> decimal ( '...
Programemos Cosas
programación, informática, matemática, Aprendiendo sobre la marcha !!