increments('id'); $table->string('name', 50)->nullable(); $table->decimal('package_fee', 50)->nullable(); $table->decimal('own_commission_amount', 50)->nullable(); $table->decimal('level_completed_amount', 50)->nullable(); $table->decimal('matrix_completed_amount', 50)->nullable(); $table->string('level_commission_amount', 50)->nullable(); $table->string('product_level_amount', 50)->nullable(); $table->tinyInteger('status')->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('package_settings'); } }