Performance: Column types and attributes
MEDIUM IMPACT
This affects database query speed and page load time by influencing how data is stored and retrieved.
t.integer :age
t.string :age
| Pattern | Data Size | Query Speed | Index Efficiency | Verdict |
|---|---|---|---|---|
| Using string for numbers | High | Slow | Poor | [X] Bad |
| Using integer for numbers | Low | Fast | Good | [OK] Good |
| Boolean without default | Medium | Slower | Average | [!] OK |
| Boolean with default and not null | Low | Faster | Good | [OK] Good |