increments('id'); $table->integer('user_id')->nullable(); $table->string('user_type', 100)->nullable(); $table->decimal('amount', 50)->nullable(); $table->dateTime('date')->nullable(); $table->enum('status', ['complete', 'verify', 'approve', 'publish', 'archive', 'unpublish'])->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('client_pays'); } }