It sometimes happen that a database dump, that would want to insert into your development database, does not match the...

If you want to prevent that two processes run some code at the same time you can use the gem...

island94.org

GoodJob is a new background worker gem. It's compatible with ActiveJob. We're huge fans of Sidekiq for its...

If you have a :string or :text field, you should pair it with a model validation that restricts its length...

postgresql.org

PostgreSQL offers three character types for your columns: character varying(n) (also called varchar or just string): Contents are limited...

We can use ActiveRecord's where to add conditions to a relation. But sometimes our condition is not on the...

PostgreSQL and ActiveRecord have a good support for storing dynamic attributes (hashes) in columns of type JSONB. But sometimes you...

pganalyze.com

It's every developer's nightmare: SQL queries that get large and unwieldy. This can happen fairly quickly with the...

As an application exists, data accumulates. While you'll be loosely monitoring the main models' record count, some supportive database...

Travis changed their default distribution from Ubuntu 14.04 (trusty) to 16.04 (precise). This might break your test setup for new...

When doing some meta-programming magic and you want to do something for all attributes of a class, you may...

For searching in large database tables we usually use PostgreSQL's fulltext search capabilities. While this works reasonably well for...

When restoring a PostgreSQL dump using pg_restore, you usually add the --clean flag to remove any existing data from...

tableplus.io

To remove all tables from a database (but keep the database itself), you have two options. Option 1: Drop the...

When projects run for many years, they require special regular maintenance to stay fresh. This kind of maintenance is usually...

github.com

Setting array columns When using PostgreSQL array columns, you can set an array attribute to a value with square brackets...

When you need to store structured data (like Ruby hashes) in a single database column with ActiveRecord, a simple way...

wiki.postgresql.org

When you have a large PG database, you may want to find out which tables are consuming the most disk...

Don't sum up columns with + in a sql-query if NULL-Values can be present. MySQL and PostgreSQL cannot...

makandra dev
github.com

geordi delete_dumps [directory] Recursively search for files ending in *.dump and offer to delete those. When no...

stackoverflow.com

Your default postgres user is named like your linux user. That default user has limited access privileges, which can cause...

This is an extension to PostgreSQL vs MySQL: How to UPDATE using a JOIN. UPDATE employees SET department_name = departments.name...

This is a small example on how you can check if your Postgres index can be used by a specific...

postgresql.org

PostgreSQL's Common Table Expressions (CTEs) can be used to extract sub-queries from bulky SQL statements into a temporary...