increments('id'); $table->unsignedInteger('timework_id'); $table->foreign('timework_id')->references('id')->on('work_shifts'); $table->unsignedInteger('employee_id'); $table->foreign('employee_id')->references('id')->on('employees'); $table->decimal('salary', 7, 2)->default('0.00'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('schedules'); } }