Performance: Schema builder (columns, types)
MEDIUM IMPACT
This affects the database migration speed and initial page load when migrations run, impacting backend response time during deployment or testing.
$table->string('name', 100); $table->unsignedTinyInteger('age'); $table->string('description', 500)->nullable();
$table->string('name', 255); $table->integer('age'); $table->text('description');
| Pattern | Migration Time | Database Size Impact | Query Speed Impact | Verdict |
|---|---|---|---|---|
| Generic large types (e.g., text for short strings) | High | High | Slower | [X] Bad |
| Precise types with size limits (e.g., string(100)) | Low | Low | Faster | [OK] Good |