DatabaseValidations
DatabaseConsistency
Our great sponsors
DatabaseValidations | DatabaseConsistency | |
---|---|---|
2 | 4 | |
383 | 587 | |
2.1% | - | |
3.5 | 6.6 | |
3 months ago | about 2 months ago | |
Ruby | Ruby | |
MIT License | MIT License |
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
DatabaseValidations
-
Ecto's uniqueness constraint vs. Rails' uniqueness validation
Love this post, great exploration of the nuances of uniqueness validations.
I came here to mention that there is also the https://github.com/toptal/database_validations gem which allows you to handle uniqueness validations in Rails in a similar manner to Ecto.
-
Rails application boilerplate for fast MVP development
add database_validations
DatabaseConsistency
-
Enhanced ActiveRecord preloading
Described issues may be found with DatabaseConsistency.
-
N+1 problem will never be an issue with N1Loader gem
Don't know Database Consistency or Factory Trace which can help you to improve your code? Check them out too!
-
Rails application boilerplate for fast MVP development
add database_consistency
-
Any decent packages that enforce database constraints to match application validation?
When coding with ruby I used to use https://github.com/djezzzl/database_consistency
What are some alternatives?
SchemaPlus - SchemaPlus provides a collection of enhancements and extensions to ActiveRecord
QueryTrack - Find time-consuming database queries for ActiveRecord-based RailsĀ Apps
Blazer - Business intelligence made simple
BatchLoader - :zap: Powerful tool for avoiding N+1 DB or HTTP queries
Scenic - Versioned database views for Rails
Lol DBA - lol_dba is a small package of rake tasks that scan your application models and displays a list of columns that probably should be indexed. Also, it can generate .sql migration scripts.
Database Cleaner - Strategies for cleaning databases in Ruby. Can be used to ensure a clean state for testing.
Seed dump - Rails 4/5 task to dump your data to db/seeds.rb
Upsert - Upsert on MySQL, PostgreSQL, and SQLite3. Transparently creates functions (UDF) for MySQL and PostgreSQL; on SQLite3, uses INSERT OR IGNORE.