File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -4,6 +4,28 @@ PhpDbMigration - full PHP database migration tool
44This is a full standalone PHP tool based on symfony console and inspired by the rails database migration tool and MyBatis.
55It merge the functionnality of the two tools and has been desined to be as flexible as possible.
66
7+ Installing it to your project
8+ -----------------------------
9+ Just add it to your composer.json (don't forget to specify your bin directory)
10+ Warning, all migrate commands must be executed on your root folder like ` bin/migrate migrate:command... `
11+
12+ {
13+ "name": "jdoe/testproject",
14+ "authors": [
15+ {
16+ "name": "Jhon DOE",
17+ "email": "jdoe@gmail.com"
18+ }
19+ ],
20+ "require": {
21+ "php-database-migration/php-database-migration" :"3.3.*"
22+ },
23+ "config": {
24+ "bin-dir": "bin"
25+ }
26+ }
27+
28+
729Adding an environment
830---------------------
931The first thing to do before playing with SQL migrations is to add an environment, let's add the dev one.
You can’t perform that action at this time.
0 commit comments