id(); $table->string('name'); $table->text('description'); $table->integer('target_count'); $table->integer('current_count'); $table->jsonb('completions')->default('[]'); $table->boolean('is_completed')->default(false); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('habits'); } };