Type-safe properties stored in JSONB for ActiveRecord models. A modern, lightweight alternative to separate settings tables.
#Why ActiveRecordProperties?
Store model settings and properties in a JSONB column with:
- Clean DSL - Simple, readable property definitions
- Type Safety - Built-in type casting for common types
- Default Values - Static or dynamic (proc) defaults
- Performance - No JOINs, everything in one table
- Flexibility - Use any JSONB column name
- Rails-native - Built on
store_accessorandattributeAPIs