- What is Codd?
Codd is a CLI tool that applies plain SQL migrations atomically (when PostgreSQL allows it) and includes schema equality checks that practically ensure your development database's schema matches the database schema in every other environment,
checking table columns' names, types, order, available functions, roles, table privileges, object ownership, row security policies, database encoding and much more.
These schema equality checks happen automatically; you only need to write .sql files and codd add migration-file.sql
them. No configuration files, JSON, or YAML; just 3 environment variables and .sql files and you can use codd.
It's also meant to be really simple to use: codd reads SQL files from folders you choose and applies migrations in order. Any special features for these migrations are typically special top-level comments in those SQL files, but you won't need them most of the time. Setting your environment up to use codd from scratch takes 15 minutes.
In day to day usage, you will typically run codd add new-migration.sql
and/or codd up
, and very likely no other commands.
Compared to other DB tools, codd aims for simplicity and strong automatic schema equality checks, meaning it doesn't have all the features other tools do. It also only supports PostgreSQL.
Here you can see its main features in more detail:
Plain SQL migrations |
$ cat create-animals-table.sql
CREATE TABLE animals (id SERIAL PRIMARY KEY, popular_name TEXT NOT NULL);
INSERT INTO animals (popular_name) VALUES ('Dog'), ('Cat');
$ codd add --quiet create-animals-table.sql
New migration applied and added to sql-migrations/all/2024-03-05-19-27-43-create-animals-table.sql
Updated expected DB schema representations in the expected-schema folder
$ psql -c "SELECT popular_name FROM animals"
popular_name
--------------
Dog
Cat
(2 rows) |
Extensive schema equality checks |
$ psql -c "ALTER TABLE animals ALTER COLUMN popular_name TYPE VARCHAR(30)"
ALTER TABLE
$ codd verify-schema
Error: DB and expected schemas do not match. Differing objects and their current DB schemas are: {"schemas/public/tables/animals/cols/popular_name":["different-schemas",{"collation":"default","collation_nsp":"pg_catalog","default":null,"generated":"","hasdefault":false,"identity":"","inhcount":0,"local":true,"notnull":true,"order":2,"privileges":null,"type":"varchar","typmod":34}]} |
Applies pending migrations in a single transaction, optionally rolls back on schema mismatch before committing¹ |
$ codd up
Checking if database codd-experiments is accessible with the configured connection string... (waiting up to 5sec)
Looking for pending migrations... [2 found]
BEGINning transaction
Applying 2022-02-27-23-14-50-create-animals-table.sql (0.08ms)
Applying 2022-02-27-23-30-41-create-people-table.sql (0.13ms)
Comparing actual and expected schemas... [match]
COMMITed transaction
Successfully applied all migrations to codd-experiments |
Meaningful merge conflicts² |
$ git merge branch-with-conflicting-db-migration
Auto-merging expected-schema/schemas/public/tables/animals/cols/popular_name
CONFLICT (content): Merge conflict in expected-schema/schemas/public/tables/animals/cols/popular_name
Automatic merge failed; fix conflicts and then commit the result. |
¹ Some SQL must run without explicit transactions; single-transaction application only works when none of that is present.
² There can be false positives and false negatives in some cases.
If you are on x86_64-linux or on aarch64-macOS, the easiest thing is to download our self-contained binaries from Github Releases. If you can't use that, there are two other installation methods, described below.
This method will install an executable named codd
and make it available in your PATH just like installing from a package manager would. It is a bit more cumbersome to install than with docker but easier to use once installed.
- Install Nix if you don't have it yet by using your package manager or following instructions from https://nixos.org/download.html.
- Run
sh <(curl -L https://raw.githubusercontent.com/mzabani/codd/master/nix/install-codd.sh)
to install codd. If things are compiling and taking too long, you may want to check if you're a privileged Nix user (otherwise it means our Nix cache is not being used). After installed, just runcodd --help
to invoke it for the first time. To uninstall it, runnix-env --uninstall codd
.
You can find up-to-date images of codd in DockerHub. To run codd through docker just run docker run --rm mzabani/codd --help
.
Invoking codd this way will often require mounting volumes, specifying UIDs and thus is more bureaucratic than other installation methods.
Here's a super quick way to get a taste of codd if you have postgres running. Let's first define three required environment variables:
$ # codd understands URI or keyword value pairs, e.g. dbname=codd_experiments user=postgres host=localhost
$ export CODD_CONNECTION=postgres://postgres@localhost/codd_experiments
$ export CODD_MIGRATION_DIRS=sql-migrations
$ export CODD_EXPECTED_SCHEMA_DIR=expected-schema
Make sure you create the sql-migrations
folder. If you're using docker, it helps to have these environment variables in a .env file.
But the database codd_experiments
doesn't exist yet, so this connection string will not work. That is not a problem, and we can make codd create this database for us with a migration that overrides the connection string just for itself.
Create this file and save it as bootstrap-db.sql
:
-- codd: no-txn
-- codd-connection: postgres://postgres@localhost/postgres
CREATE DATABASE codd_experiments;
That's a lot to take in. codd handles pure SQL migrations but also has some special header comments defined that can make it do special things.
- The
-- codd: no-txn
header comment specifies that this migration can't run inside a transaction. Postgres doesn't allow us to create databases (plus a few other statements) inside transactions, after all. - The
-- codd-connection
header comment specifies that this specific migration will run with its own connection string, not with the default one.
You can find more about the special migration directives that codd understands here.
Now add this migration by running one of the two commands below:
$ # If you are using the binary releases or if you installed codd with Nix
$ codd add bootstrap-db.sql
$ # If you're using the docker image with a .env file:
$ docker run --rm -it --env-file .env --network=host --user `id -u`:`id -g` -v "$(pwd):/working-dir" mzabani/codd add bootstrap-db.sql
The file should now have been timestamped and moved to the sql-migrations
folder. The migration ran and so the codd_experiments
database was created, and schema representation files were written to the expected-schema
folder.
Optionally, explore the expected-schema
folder. You won't find much yet, but all the files in there reflect existing database objects. That's how codd knows if schemas in different environments match and also how multiple developers can add migrations and get warned by merge conflicts if any two people modify the same database object.
Just for completeness, let's now create a table. Write the following to a create-employees-table.sql
:
CREATE TABLE employee (
employee_id SERIAL PRIMARY KEY
, employee_name TEXT NOT NULL
);
INSERT INTO employee (employee_name) VALUES ('John Doe');
Add this migration with codd add
just like you did to the previous one and it will be added and applied.
Before we finish this tutorial, some things you might want to do:
- psql into your database and manually create a table there, without a migration. Then run
codd verify-schema
. - Run
dropdb codd_experiments
and thencodd up
to get a fresh database from the start. - Read all the knobs you can configure codd with in CONFIGURATION.md.
- Read safety considerations.
If you already have a database and want to start using codd without losing it, read START-USING.md. If you're running codd in multiple environments where connection strings can differ between them, environment variable templating might be of assistance.
We recommend following these instructions closely to catch as many possible issues with your database setup/management as possible.
- Never merge code that has been tested without
master
merged into it.- There are non-conflicting changes which can break your App. One example is one developer removes a column and another developer writes a new query using that column. Only a test could catch this.
- Always run
codd up --strict-check
on CI because it's a good place to be strict. - Read about what codd cannot do in DATABASE-EQUALITY.md. This will also give you another idea about how far codd is willing to go to ensure your schema is the same across environments.
-
pg_dump
does not dump all of the schema state that codd checks. A few examples include (at least with PG 13) role related state, the database's default transaction isolation level and deferredness, among possibly others. So check that it isn't the case that you get different schemas when that happens. If you've checked withpsql
and everything looks to be the same please report a bug in codd. -
Most likely not. Codd reads migrations from disk in streaming fashion and keeps in memory only a single statement at a time. For
COPY
statements, codd uses a constant-size buffer to stream-read the contents and achieve bounded memory usage while staying fast. Also, codd does not open more than one migration file simultaneously to stay well below typical file handle limits imposed by the shell or operating system, and that is also assured through an automated test that runs in CI withstrace
. Codd does keep metadata about all pending migrations in memory, but that should be fairly small. -
Codd tries to do the "best possible thing" even in rather unusual situations. It will retry sets of consecutive in-txn migrations atomically so as not to leave your database in an intermediary state. Even for no-txn migrations, codd will retry the failing statement instead of entire migrations, and even if you write explicit
BEGIN..COMMIT
sections in no-txn migrations, codd will be smart enough to retry from theBEGIN
if a statement inside that section fails. See the retry examples if you're interested. What codd currently cannot handle well is having its connection killed by an external agent while it's applying a no-txn migration, a scenario which should be extremely rare. Basically, we hope you should be able to write your migrations however you want and rely comfortably on the fact that codd should do the reasonable thing when handling errors.