increments('id'); $table->integer('escrow_id')->nullable(); $table->date('date')->nullable(); $table->string('description', 255)->nullable(); $table->decimal('amount', 12,3)->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('escrow_details'); } }