Skip to content

Commit

Permalink
chore: ajustes edentação código
Browse files Browse the repository at this point in the history
  • Loading branch information
CeruttiMaicon committed Aug 21, 2024
1 parent 5cc73d3 commit f06b104
Showing 1 changed file with 18 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,17 +17,26 @@ public function up()
Schema::create('qualitative_scouts', function (Blueprint $table) {

$table->id();
$table->foreignId('user_id')->constrained('users');
$table->foreignId('player_id')->constrained('users');
$table->foreignId('training_id')->constrained('trainings');
$table->foreignId('position_id')->constrained('positions');
$table->foreignId('action_type_id')->constrained('action_types');
$table->foreignId('user_id')
->constrained('users');
$table->foreignId('player_id')
->constrained('users');
$table->foreignId('training_id')
->constrained('trainings');
$table->foreignId('position_id')
->constrained('positions');
$table->foreignId('action_type_id')
->constrained('action_types');

// NOTE - Campos utilizados para marcações de avaliação
$table->smallInteger('set_number')->unsigned();
$table->smallInteger('number_point')->unsigned();
$table->smallInteger('evaluation')->unsigned();
$table->smallInteger('time')->unsigned();
$table->smallInteger('set_number')
->unsigned();
$table->smallInteger('number_point')
->unsigned();
$table->smallInteger('evaluation')
->unsigned();
$table->smallInteger('time')
->unsigned();

$table->timestamps();
$table->softDeletes();
Expand Down

0 comments on commit f06b104

Please sign in to comment.