id(); $table->string('name')->nullable(); $table->string('description')->nullable(); $table->decimal('default_budget', 12, 2)->default(0); $table->timestamps(); $table->softDeletes(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('categories'); } }