dbfdg bigIncrements('id'); $table->integer('employee_id'); $table->string('title'); $table->decimal('amount',15,2)->default('0.0'); $table->string('type')->nullable(); $table->integer('created_by'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('other_payments'); } }