gipfl/db-migration

There is no license information available for the latest version (v0.1.1) of this package.

Simple DB migration helper

v0.1.1 2021-11-11 15:40 UTC

This package is auto-updated.

Last update: 2024-03-11 20:49:08 UTC


README

Allows to apply schema migrations

Sample Directory Structure

├── src
│   └── ...
├── schema
│   ├── mysql-migrations
│   │   ├── upgrade_2.sql
│   │   ├── upgrade_3.sql
│   │   ├── upgrade_4.sql
│   │   └── upgrade_5.sql
│   ├── pgsql-migrations
│   │   ├── upgrade_2.sql
│   │   ├── upgrade_4.sql
│   │   └── upgrade_13.sql
│   ├── mysql.sql
│   └── pgsql.sql
├── README.md