increments('id'); $table->decimal('amount', 10,2)->nullable(); $table->integer('client_id')->nullable(); $table->string('description', 250)->nullable(); $table->enum('transaction_type', [])->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('other_incomes'); } }