Download the PHP package ikto/pg-migration-directories without Composer
On this page you can find all versions of the php package ikto/pg-migration-directories. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download ikto/pg-migration-directories
More information about ikto/pg-migration-directories
Files in ikto/pg-migration-directories
Package pg-migration-directories
Short Description The tool for installing/removing/upgrading/downgrading PgSQL schemas
License MIT
Informations about the package pg-migration-directories
Pg Migration Directories
Short description
This library is inspired by DBIx::Migration::Directories perl module. Main goal is providing tiny platform to run database migrations on PostgreSQL databases. This library cannot work out of the box though. To make it work need to implement database connection adapter. Also, it is possible to alter the behaviour of this tool.
Features
- Installing database schema from scratch (into empty database);
- Execution of SQL files to upgrade/downgrade database schemas;
- Tracking database schema version;
- Opportunity to choose any way to connect to database (by implementing connection adapter) which makes its integration more consistent.
Requirements (environment)
- PHP 7.0 or higher
How it works: high level description
In short the workflow can be illustration as several steps.
Step 1. Discovering available migrations
At first the tool gets a list of available migrations. The way how exactly how does it happen can be any. The exact way of discovering and loading migrations is "described" in migrations discovery implementation. This package contains the simplest one: SqlFilesDiscovery.
SqlFilesDiscovery
For this discovery each migration is a directory which contains a bunch of SQL files. Migrations directory should have the following layout:
At the top level there are directories named as db schema which we manage: in this example we manage the schema named DBSCHEMANAME. There is a Pg directory inside of each. On the next level there is a set of directories named using the following pattern: [from_version]-[to_version]. Each of these directories represent the single migration. In other words each directory contains instructions how to update the db schema from one version to another (it may be upgrade or downgrade). If directory name contains only one version number - it will be considered as 0-[version]. Zero version number means that db schema is not installed yet. Each version-named directory should contain a set of SQL files. The naming of SQL files is arbitrary, but please note, when performing migration SQL files will be sorted alphabetically.
Step 2. Building migration path
This step is pretty simple. The existing db schema already has some version (zero if it is not installed yet). User/developer provides the version to migrate to (desired version). By having a list discovered migrations, current and desired versions the migration path builder constructs the list of exact migrations which need to be applied to reach the desired version. Usually there is no need to alter this behaviour, but it is possible though.
Step 3. Applying migrations
Even simpler step. One thing left: apply each of migration to db. From step 2 we have a list, so here we just iterate over the list and apply each migration.
Each migration is applied with processor. The migration discovered by SqlFilesDiscovery will be applied by SqlFilesProcessor. It sorts SQL files alphabetically, loads SQL commands and executed them in order.
Code example
This library does not provide ready-to-use program to apply migrations. The following example shows what the program should do.
Tracking db schema version
To monitor the state of the db the library holds the data about migration inside of db. These table should be created with the first migration which install the db schema.
Usually these tables are stored under the public schema. But you are able to store them in another, just don't forget to change the third constructor argument when you're creating managed db object (or corresponding parameter for StateManager).
Also, it is possible to store db schema version somehow differently, but then StateManager needs to be replaced. To replace StateManager the managed db class should be replaced as well.