2.0.1 • Published 10 months ago

@moneypot/pg-upgrade-schema v2.0.1

Weekly downloads
-
License
-
Repository
-
Last release
10 months ago

A simple library to help you manage postgres schema versions

pg-upgrade-schema is designed to be the simplest possible library to help you manage upgrading your postgres schema.

npm install pg-upgrade-schema

It will start off by creating a table:

    CREATE TABLE pg_upgrade_schema_versions(
      version     int           NOT NULL PRIMARY KEY,
      updated_at  timestamptz   NOT NULL DEFAULT clock_timestamp()
    );
    INSERT INTO pg_upgrade_schema_versions(version) VALUES(0);

Which will track all the upgrades of the database.

pg-upgrade-schema takes two arguments. The first being a postgres connection. The second being the full path to a directory of upgrade scripts. The only thing allowed in that directory is upgrade scripts. An upgrade script must start with the version number (but can be prefixed with 0s for lexical sorting).

An upgrade script can be .sql which is executed againt the db. Or it can be a .js or .ts file, which is imported and the default exported function will be called with a PgClient passed in as the first argument. If it returns a string, that is also executed.

After each upgrade, an entry into pg_upgrade_schema_versions is added.

See: /example directory

Tips:

  • In your npm scripts add something like:
    "resetdb": "dropdb yourdbname && createdb yourdbname",
    "schema_dump": "pg_dump -d yourdbname --schema-only > schema.sql"

So you have a schema.sql file, which you can commit. And then you can diff.

2.0.1

10 months ago

2.0.0

10 months ago

1.0.0

11 months ago