Download the PHP package rafaeltheraven/db-changeset-manager-psql without Composer
On this page you can find all versions of the php package rafaeltheraven/db-changeset-manager-psql. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download rafaeltheraven/db-changeset-manager-psql
More information about rafaeltheraven/db-changeset-manager-psql
Files in rafaeltheraven/db-changeset-manager-psql
Package db-changeset-manager-psql
Short Description Automate the process of applying SQL files (changesets) to databases of different environments or users.
License MIT
Informations about the package db-changeset-manager-psql
What is this fork?
This is a very basic fork from the upstream zimzat version which makes this application work on postgres databases. I made it because I like this simplicity of their migrator, but I use postgres myself and they use some mysql specific syntax in some places.
To make autoincrement work I use some postgres specific syntax so it probably doesn't work anywhere else
Db Changeset Manager
Automate the process of applying SQL files (changesets) to databases of different environments or users.
Create versioned directories where developers can drop SQL files to be applied to other environments through the release process and back to other developers to ensure that everyone stays synced with database changes. This project doesn't try to force specific syntax, verbose declarations, or provide automated conflict resolution or detection; just a simple process of applying changes between environments.
A typical changeset directory would look something like this:
Changes are applied to the database in order of version number and then sorted numerically by file name, thus upgrading from 1.0 to 1.3 would apply 'track-user-actions' before 'track-user-action-date' even though they're the same date prefix.
By default directories should be prefixed with 'v' however this can be changed or eliminated by specifying the versionPrefix
in the db.ini. The versioning scheme should otherwise follow the standard set out by version_compare().
Files must be suffixed with .sql
and must be uniquely named between all versions but otherwise can be named anything. A natural sort (2 before 10) is done to the list of files before being applied to the database.
Restrictions
- No SELECT statements.
- No CREATE DATABASE, DROP DATABASE, or USE DATABASE statements.
Requirements
- PDO
- Postgresql
Install
The supported method to install the utility is through Composer.
Command Line Usage
Once installed a php shell file can be used to apply changes from the command line.
The command line tool expects a configuration file to be defined specifying the access name and permissions.
The available commands, which can also be seen by running the command without any options, are:
PHP Usage
The utility can also be invoked directly from a PHP script by instantiating the \DbVcs\ChangeManager object with its dependencies.
Note: The \DbVcs\Output class should be extended to send results where and how desired (log file, browser, database, etc).
All versions of db-changeset-manager-psql with dependencies
ext-pdo Version *