id(); $table->string('title'); $table->text('description')->nullable(); $table->string('status')->default('active'); // active | paused | done | abandoned $table->unsignedTinyInteger('progress')->default(0); // 0-100 $table->jsonb('metadata')->nullable(); $table->timestamp('last_reviewed_at')->nullable(); $table->timestamps(); $table->index('status'); }); } public function down(): void { Schema::dropIfExists('goals'); } };