id(); $table->string('name'); $table->string('platform'); // Ex: Steam, PlayStation, Xbox $table->integer('active_players'); // Para o "mais jogados" $table->integer('weekly_points'); // Simulando pontuação de ranking $table->integer('monthly_points'); $table->integer('yearly_points'); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('games'); } };