Diesel Guard
Catch unsafe PostgreSQL migrations in Diesel before they take down production.
✓ Detects operations that lock tables or cause downtime ✓ Provides safe alternatives for each unsafe operation ✓ Works with any Diesel project - zero configuration required ✓ Supports safety-assured blocks for verified operations
Installation
How It Works
Diesel Guard analyzes your migration SQL and catches dangerous operations before they reach production.
When it finds an unsafe operation, you'll see:
❌ Unsafe migration detected in migrations/2024_01_01_create_users/up.sql
❌ ADD COLUMN with DEFAULT
Problem:
Adding column 'admin' with DEFAULT on table 'users' requires a full table rewrite on PostgreSQL < 11,
which acquires an ACCESS EXCLUSIVE lock. On large tables, this can take significant time and block all operations.
Safe alternative:
1. Add the column without a default:
ALTER TABLE users ADD COLUMN admin BOOLEAN;
2. Backfill data in batches (outside migration):
UPDATE users SET admin = <value> WHERE admin IS NULL;
3. Add default for new rows only:
ALTER TABLE users ALTER COLUMN admin SET DEFAULT <value>;
Note: For PostgreSQL 11+, this is safe if the default is a constant value.
Checks
Adding a column with a default value
Bad
In PostgreSQL versions before 11, adding a column with a default value requires a full table rewrite. This acquires an ACCESS EXCLUSIVE lock and can take hours on large tables, blocking all reads and writes.
users ADD COLUMN admin BOOLEAN DEFAULT FALSE;
Good
Add the column first, backfill the data separately, then add the default:
-- Migration 1: Add column without default
users ADD COLUMN admin BOOLEAN;
-- Outside migration: Backfill in batches
UPDATE users SET admin = FALSE WHERE admin IS NULL;
-- Migration 2: Add default for new rows only
users ALTER COLUMN admin SET DEFAULT FALSE;
Note: For PostgreSQL 11+, adding a column with a constant default value is instant and safe.
Dropping a column
Bad
Dropping a column acquires an ACCESS EXCLUSIVE lock and typically triggers a table rewrite. This blocks all operations and can cause errors if application code is still referencing the column.
users DROP COLUMN email;
Good
Remove references from application code first, then drop the column in a later migration:
-- Step 1: Mark column as unused in application code
-- Deploy application code changes first
-- Step 2: (Optional) Set to NULL to reclaim space
users ALTER COLUMN email DROP NOT NULL;
UPDATE users SET email = NULL;
-- Step 3: Drop in later migration after confirming it's unused
users DROP COLUMN email;
PostgreSQL doesn't support DROP COLUMN CONCURRENTLY, so the table rewrite is unavoidable. Staging the removal minimizes risk.
Adding an index non-concurrently
Bad
Creating an index without CONCURRENTLY acquires a SHARE lock, blocking all write operations (INSERT, UPDATE, DELETE) for the duration of the index build.
(email);
(username);
Good
Use CONCURRENTLY to allow concurrent writes during the index build:
(email);
(username);
Important: CONCURRENTLY cannot run inside a transaction block. Add a metadata.toml file to your migration directory:
# migrations/2024_01_01_add_user_index/metadata.toml
= false
Changing column type
Bad
Changing a column's type typically requires an ACCESS EXCLUSIVE lock and triggers a full table rewrite, blocking all operations.
users ALTER COLUMN age TYPE BIGINT;
users ALTER COLUMN data TYPE JSONB USING data::JSONB;
Good
Use a multi-step approach with a new column:
-- Migration 1: Add new column
users ADD COLUMN age_new BIGINT;
-- Outside migration: Backfill in batches
UPDATE users SET age_new = age::BIGINT;
-- Migration 2: Swap columns
users DROP COLUMN age;
users RENAME COLUMN age_new TO age;
Safe type changes (no rewrite on PostgreSQL 9.2+):
- Increasing VARCHAR length:
VARCHAR(50)→VARCHAR(100) - Converting to TEXT:
VARCHAR(255)→TEXT - Increasing numeric precision
Adding a NOT NULL constraint
Bad
Adding a NOT NULL constraint requires scanning the entire table to verify all values are non-null. This acquires an ACCESS EXCLUSIVE lock and blocks all operations.
users ALTER COLUMN email SET NOT NULL;
Good
For large tables, use a CHECK constraint approach that allows concurrent operations:
-- Step 1: Add CHECK constraint without validating existing rows
users ADD CONSTRAINT email_not_null CHECK (email IS NOT NULL) NOT VALID;
-- Step 2: Validate separately (uses SHARE UPDATE EXCLUSIVE lock)
users VALIDATE CONSTRAINT email_not_null;
-- Step 3: Add NOT NULL constraint (instant if CHECK exists)
users ALTER COLUMN email SET NOT NULL;
-- Step 4: Optionally drop redundant CHECK constraint
users DROP CONSTRAINT email_not_null;
The VALIDATE step allows concurrent reads and writes, only blocking other schema changes. On PostgreSQL 12+, NOT NULL constraints are more efficient, but this approach still provides better control.
Creating extensions
Bad
Creating an extension in migrations often requires superuser privileges, which application database users typically don't have in production environments.
CREATE EXTENSION IF NOT EXISTS pg_trgm;
CREATE EXTENSION uuid_ossp;
Good
Install extensions outside of application migrations:
-- For local development: add to database setup scripts
CREATE EXTENSION IF NOT EXISTS pg_trgm;
-- For production: use infrastructure automation
-- (Ansible, Terraform, or manual DBA installation)
Best practices:
- Document required extensions in your project README
- Include extension installation in database provisioning scripts
- Use infrastructure automation (Ansible, Terraform) for production
- Have your DBA or infrastructure team install extensions before deployment
Common extensions that require this approach: pg_trgm, uuid-ossp, hstore, postgis, pg_stat_statements.
Unnamed constraints
Bad
Adding constraints without explicit names results in auto-generated names from PostgreSQL. These names vary between databases and make future migrations difficult.
-- Unnamed UNIQUE constraint
users ADD UNIQUE (email);
-- Unnamed FOREIGN KEY constraint
posts ADD FOREIGN KEY (user_id) REFERENCES users(id);
-- Unnamed CHECK constraint
users ADD CHECK (age >= 0);
Good
Always name constraints explicitly using the CONSTRAINT keyword:
-- Named UNIQUE constraint
users ADD CONSTRAINT users_email_key UNIQUE (email);
-- Named FOREIGN KEY constraint
posts ADD CONSTRAINT posts_user_id_fkey FOREIGN KEY (user_id) REFERENCES users(id);
-- Named CHECK constraint
users ADD CONSTRAINT users_age_check CHECK (age >= 0);
Best practices for constraint naming:
- UNIQUE:
{table}_{column}_keyor{table}_{column1}_{column2}_key - FOREIGN KEY:
{table}_{column}_fkey - CHECK:
{table}_{column}_checkor{table}_{description}_check
Named constraints make future migrations predictable:
-- Easy to reference in later migrations
users DROP CONSTRAINT users_email_key;
Renaming a column
Bad
Renaming a column breaks running application instances immediately. Any code that references the old column name will fail after the rename is applied, causing downtime.
users RENAME COLUMN email TO email_address;
Good
Use a multi-step migration to maintain compatibility during the transition:
-- Migration 1: Add new column
users ADD COLUMN email_address VARCHAR(255);
-- Outside migration: Backfill in batches
UPDATE users SET email_address = email;
-- Migration 2: Add NOT NULL if needed
users ALTER COLUMN email_address SET NOT NULL;
-- Update application code to use email_address
-- Migration 3: Drop old column after deploying code changes
users DROP COLUMN email;
Important: The RENAME COLUMN operation itself is fast (brief ACCESS EXCLUSIVE lock), but the primary risk is application compatibility, not lock duration. All running instances must be updated to reference the new column name before the rename is applied.
Renaming a table
Bad
Renaming a table breaks running application instances immediately. Any code that references the old table name will fail after the rename is applied. Additionally, this operation requires an ACCESS EXCLUSIVE lock which can block on busy tables.
users RENAME TO customers;
Good
Use a multi-step dual-write migration to safely rename the table:
-- Migration 1: Create new table
(LIKE users INCLUDING ALL);
-- Update application code to write to BOTH tables
-- Migration 2: Backfill data in batches
INSERT INTO customers
SELECT * FROM users
WHERE id > last_processed_id
LIMIT 10000;
-- Update application code to read from new table
-- Deploy updated application
-- Update application code to stop writing to old table
-- Migration 3: Drop old table
users;
Important: This multi-step approach avoids the ACCESS EXCLUSIVE lock issues on large tables and ensures zero downtime. The migration requires multiple deployments coordinated with application code changes.
Adding a SERIAL column to an existing table
Bad
Adding a SERIAL column to an existing table triggers a full table rewrite because PostgreSQL must populate sequence values for all existing rows. This acquires an ACCESS EXCLUSIVE lock and blocks all operations.
users ADD COLUMN id SERIAL;
users ADD COLUMN order_number BIGSERIAL;
Good
Create the sequence separately, add the column without a default, then backfill:
-- Step 1: Create a sequence
;
-- Step 2: Add the column WITHOUT default (fast, no rewrite)
users ADD COLUMN id INTEGER;
-- Outside migration: Backfill existing rows in batches
UPDATE users SET id = nextval('users_id_seq') WHERE id IS NULL;
-- Step 3: Set default for future inserts only
users ALTER COLUMN id SET DEFAULT nextval('users_id_seq');
-- Step 4: Set NOT NULL if needed (PostgreSQL 11+: safe if all values present)
users ALTER COLUMN id SET NOT NULL;
-- Step 5: Set sequence ownership
users_id_seq OWNED BY users.id;
Key insight: Adding a column with DEFAULT nextval(...) on an existing table still triggers a table rewrite. The solution is to add the column first without any default, backfill separately, then set the default for future rows only.
Usage
Check a single migration
Check all migrations
JSON output for CI/CD
Configuration
Create a diesel-guard.toml file in your project root to customize behavior.
Initialize configuration
Generate a documented configuration file:
Use --force to overwrite an existing file:
Configuration options
# Skip migrations before this timestamp
# Accepts: YYYYMMDDHHMMSS, YYYY_MM_DD_HHMMSS, or YYYY-MM-DD-HHMMSS
# Works with any migration directory format
= "2024_01_01_000000"
# Also check down.sql files (default: false)
= true
# Disable specific checks
= ["AddColumnCheck"]
Available check names
AddColumnCheck- ADD COLUMN with DEFAULTAddIndexCheck- CREATE INDEX without CONCURRENTLYAddNotNullCheck- ALTER COLUMN SET NOT NULLAddSerialColumnCheck- ADD COLUMN with SERIALAlterColumnTypeCheck- ALTER COLUMN TYPECreateExtensionCheck- CREATE EXTENSIONDropColumnCheck- DROP COLUMNRenameColumnCheck- RENAME COLUMNRenameTableCheck- RENAME TABLEUnnamedConstraintCheck- Unnamed constraints (UNIQUE, FOREIGN KEY, CHECK)
Safety Assured
When you've manually verified an operation is safe, use safety-assured comment blocks to bypass checks:
-- safety-assured:start
users DROP COLUMN deprecated_column;
posts DROP COLUMN old_field;
-- safety-assured:end
Multiple blocks
-- safety-assured:start
users DROP COLUMN email;
-- safety-assured:end
-- This will be checked normally
(email);
-- safety-assured:start
posts DROP COLUMN body;
-- safety-assured:end
When to use safety-assured
Only use when you've taken proper precautions:
-
For DROP COLUMN:
- Stopped reading/writing the column in application code
- Deployed those changes to production
- Verified no references remain in your codebase
-
For other operations:
-- safety-assured:start -- Safe because: table is empty, deployed in maintenance window new_table ADD COLUMN status TEXT DEFAULT 'pending'; -- safety-assured:end
Diesel Guard will error if blocks are mismatched:
Error: Unclosed 'safety-assured:start' at line 1
Coming Soon
Constraint & lock-related
- ADD FOREIGN KEY constraint - Blocks writes during validation; use NOT VALID + separate VALIDATE
- ADD UNIQUE constraint - Blocks reads/writes; use CREATE UNIQUE INDEX CONCURRENTLY instead
- ADD CHECK constraint - Blocks during validation; use NOT VALID then VALIDATE separately
- DROP INDEX without CONCURRENTLY - Blocks all queries; use DROP INDEX CONCURRENTLY
- REINDEX without CONCURRENTLY - Blocks reads/writes; use REINDEX CONCURRENTLY (PostgreSQL 12+)
Schema & data migration
- Adding stored GENERATED column - Triggers full table rewrite with ACCESS EXCLUSIVE lock
- Adding JSON/JSONB column - Can break SELECT DISTINCT in older PostgreSQL versions
Data safety & best practices
- Wide indexes - Indexes with 3+ columns rarely help; consider partial indexes
- Multiple foreign keys - Can block all involved tables simultaneously
Contributing
We welcome contributions! See CONTRIBUTING.md for development setup and testing guide.
For AI assistants working on this project, see AGENTS.md for detailed implementation patterns.
Credits
Inspired by strong_migrations by Andrew Kane
License
MIT