Skip to content

Latest commit

 

History

History
27 lines (22 loc) · 667 Bytes

README.md

File metadata and controls

27 lines (22 loc) · 667 Bytes

gipfl\Db\Migration - DB migration helper

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