increments('id'); $table->integer('user_id')->nullable(); $table->date('date')->nullable(); $table->text('description')->nullable(); $table->text('reason')->nullable(); $table->float('amount')->nullable(); $table->string('status', 255)->nullable(); $table->text('status_reason')->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('cash_purchases'); } }