What is the default row-level lock mode used in PostgreSQL? And because the question is related to Sequelize ORM, so, it would be nice to know which mode is used by default to avoid or modify my queries.
The default isolation level in Postgres is read committed
.
Read Committed is the default isolation level in PostgreSQL