Download the PHP package chxj1992/php-database-migration without Composer
On this page you can find all versions of the php package chxj1992/php-database-migration. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Informations about the package php-database-migration
PhpDbMigration - full PHP database migration tool
This is a full standalone PHP tool based on Symfony Console and inspired by the Rails database migration tool and MyBatis. It merges the functionality of the two tools and has been designed to be as flexible as possible.
Usage
Installing it to your project
Just add it to your composer.json (don't forget to specify your bin directory)
Warning, all migrate commands must be executed on your root folder like bin/migrate migrate:command...
{
"name": "jdoe/testproject",
"authors": [
{
"name": "Jhon DOE",
"email": "[email protected]"
}
],
"require": {
"php-database-migration/php-database-migration" :"3.6.*"
},
"config": {
"bin-dir": "bin"
}
}
Adding an environment
The first thing to do before playing with SQL migrations is to add an environment, let's add the dev one.
You will be prompted to answer a series of questions about your environment, and then a config file will be saved
in ./.php-database-migration/environments/[env].yml
.
Initialization
Once the environment is added, you have to initialize it. This verifies that the database connection works, and create a new database table for tracking the current database changes:
Create a migration
It is time to create our first migration file.
Migrations file are like this
-- // add table users
-- Migration SQL that makes the change goes here.
create table users (id integer, name text);
-- @UNDO
-- SQL to undo the change goes here.
drop table users;
List migrations
View all available migrations and their status.
Up and down
You can now up all the pending migrations. If you decided to down a migration, the last one will be downed alone to prevent from mistake. You will be asked to confirm the downgrade of your database before runing the real SQL script.
You can mark migrations as applied without executing SQL (e.g. if you switched from another migration system)
For developement purpose, it is also possible to up a single migration without taking care of the other ones:
or migrate to specific migration (it will run all migrations including specified migration)
Same thing for down:
or
All versions of php-database-migration with dependencies
symfony/console Version ~2.6|~3.0
symfony/process Version ~2.6|~3.0
symfony/config Version ~2.6|~3.0
cocur/slugify Version ~1.0
symfony/yaml Version ~2.6|~3.0