increments('id'); $table->string('type', 100)->nullable(); $table->decimal('value', 12,2)->nullable(); $table->date('date')->nullable(); $table->integer('user_id')->nullable(); $table->string('user_type', 50)->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('statistics'); } }