2017 © Pedro Peláez
 

library migrate

Lightweight migration tool for Hack

image

hhpack/migrate

Lightweight migration tool for Hack

  • Sunday, May 27, 2018
  • by holyshared
  • Repository
  • 1 Watchers
  • 1 Stars
  • 7 Installations
  • Hack
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 1 Open issues
  • 29 Versions
  • 0 % Grown

The README.md

migrate

CircleCI, (*1)

Basic usage

First place the database.json of the configuration file in the config directory.
Please specify the setting referring to the following., (*2)

  • type - the type of migration, it only supports SQL base.
  • path - the directory of the migration file.
  • enviroments - Database connection setting for environment.
{
  "type": "sql",
  "path": "db/migrate",
  "enviroments": {
    "development": {
      "host": "localhost",
      "port": 3306,
      "name": "migrate",
      "user": { "ENV": "DB_USERNAME" },
      "password": { "ENV": "DB_PASSWORD" }
    }
  }
}

Create a database

You can run the create command to create the database., (*3)

vendor/bin/migrate create

Generate a migration file

Use the gen command to generate a migration file., (*4)

vendor/bin/migrate gen create-users

Upgrade of schema

Use the up command to upgrade the schema.
You can upgrade to a specific version by specifying the --to option., (*5)

vendor/bin/migrate up

or, (*6)

vendor/bin/migrate up --to=20150824010439-create-users

Downgrade of schema

To downgrade to the specified version, use the down command., (*7)

vendor/bin/migrate down 20150824010439-create-users

Reset of schema

Restore all applied migrations., (*8)

vendor/bin/migrate reset

Drop database

You can delete the database with the following command., (*9)

vendor/bin/migrate drop

Migrator

Current version supports SQL based migration., (*10)

use HHPack\Migrate\Migrator;
use HHPack\Migrate\SqlMigrationLoader;
use HHPack\Migrate\DatabaseClient;

$mysql = await DatabaseClient::createConnection('mysql:dbname=migrate;port=3306', 'migrate', 'migrate');
$loader = new SqlMigrationLoader(__DIR__ . '/sql/migrations');

$migrator = new Migrator($loader, $mysql);

await $migrator->upgrade();

Downgrade of schema

use HHPack\Migrate\Migrator;
use HHPack\Migrate\SqlMigrationLoader;
use HHPack\Migrate\DatabaseClient;

$mysql = await DatabaseClient::createConnection('mysql:dbname=migrate;port=3306', 'migrate', 'migrate');
$loader = new SqlMigrationLoader(__DIR__ . '/sql/migrations');

$migrator = new Migrator($loader, $mysql);

await $migrator->downgrade('20150825102100-create-posts');

Run the test

  1. Create a database, (*11)

    CREATE USER 'migrate'@'localhost' IDENTIFIED BY 'migrate';
  2. Create a user, (*12)

    GRANT SELECT, INSERT, UPDATE, DELETE, CREATE, DROP ON migrate.* TO 'migrate'@'localhost';
  3. Execute unit test, (*13)

    You can run the test with the following command., (*14)

    composer install
    composer test

The Versions

27/05 2018

dev-master

9999999-dev

Lightweight migration tool for Hack

  Sources   Download

MIT

The Requires

 

The Development Requires

by Noritaka Horio

lightweight migration mysql db

13/05 2018

2.1.1

2.1.1.0

Lightweight migration tool for Hack

  Sources   Download

MIT

The Requires

 

The Development Requires

by Noritaka Horio

lightweight migration mysql db

24/03 2018

2.1.0

2.1.0.0

Lightweight migration tool for Hack

  Sources   Download

MIT

The Requires

 

The Development Requires

by Noritaka Horio

lightweight migration mysql db

24/03 2018

dev-develop

dev-develop

Lightweight migration tool for Hack

  Sources   Download

MIT

The Requires

 

The Development Requires

by Noritaka Horio

lightweight migration mysql db

24/03 2018

dev-feature/dryrun

dev-feature/dryrun

Lightweight migration tool for Hack

  Sources   Download

MIT

The Requires

 

The Development Requires

by Noritaka Horio

lightweight migration mysql db

22/03 2018

2.0.6

2.0.6.0

Lightweight migration tool for Hack

  Sources   Download

MIT

The Requires

 

The Development Requires

by Noritaka Horio

lightweight migration mysql db

21/03 2018

dev-feature/hhvm3.25

dev-feature/hhvm3.25

Lightweight migration tool for Hack

  Sources   Download

MIT

The Requires

 

The Development Requires

by Noritaka Horio

lightweight migration mysql db

25/01 2018

2.0.5

2.0.5.0

Lightweight migration tool for Hack

  Sources   Download

MIT

The Requires

 

The Development Requires

by Noritaka Horio

lightweight migration mysql db

25/01 2018

dev-feature/hhvm3.24

dev-feature/hhvm3.24

Lightweight migration tool for Hack

  Sources   Download

MIT

The Requires

 

The Development Requires

by Noritaka Horio

lightweight migration mysql db

04/10 2017

2.0.4

2.0.4.0

Lightweight migration tool for Hack

  Sources   Download

MIT

The Requires

 

The Development Requires

by Noritaka Horio

lightweight migration mysql db

08/09 2017

2.0.3

2.0.3.0

Lightweight migration tool for Hack

  Sources   Download

MIT

The Requires

 

The Development Requires

by Noritaka Horio

lightweight migration mysql db

06/09 2017

2.0.2

2.0.2.0

Lightweight migration tool for Hack

  Sources   Download

MIT

The Requires

 

The Development Requires

by Noritaka Horio

lightweight migration mysql db

05/09 2017

2.0.1

2.0.1.0

Lightweight migration tool for Hack

  Sources   Download

MIT

The Requires

 

The Development Requires

by Noritaka Horio

lightweight migration mysql db

05/09 2017

2.0.0

2.0.0.0

Lightweight migration tool for Hack

  Sources   Download

MIT

The Requires

 

The Development Requires

by Noritaka Horio

lightweight migration mysql db

03/09 2017

2.0.0-beta3

2.0.0.0-beta3

Lightweight migration tool for Hack

  Sources   Download

MIT

The Requires

 

The Development Requires

by Noritaka Horio

lightweight migration mysql db

03/09 2017

2.0.0-beta2

2.0.0.0-beta2

Lightweight migration tool for Hack

  Sources   Download

MIT

The Requires

 

The Development Requires

by Noritaka Horio

lightweight migration mysql db

31/08 2017

2.0.0-beta1

2.0.0.0-beta1

Lightweight migration tool for Hack

  Sources   Download

MIT

The Requires

 

The Development Requires

by Noritaka Horio

lightweight migration mysql db

12/08 2017

1.2.0

1.2.0.0

Lightweight migration tool for Hack

  Sources   Download

MIT

The Requires

 

The Development Requires

by Noritaka Horio

lightweight migration mysql db

09/07 2017

1.1.1

1.1.1.0

Lightweight migration tool for Hack

  Sources   Download

MIT

The Requires

 

The Development Requires

by Noritaka Horio

lightweight migration mysql db

08/07 2017

1.1.0

1.1.0.0

Lightweight migration tool for Hack

  Sources   Download

MIT

The Requires

 

The Development Requires

by Noritaka Horio

lightweight migration mysql db

19/02 2017

1.0.0

1.0.0.0

Lightweight migration tool for Hack

  Sources   Download

MIT

The Requires

 

The Development Requires

by Noritaka Horio

lightweight migration mysql db

27/05 2016

dev-postgre-sql

dev-postgre-sql

Lightweight migration tool for Hack

  Sources   Download

MIT

The Requires

 

The Development Requires

by Noritaka Horio

lightweight migration mysql db

22/05 2016

0.5.1

0.5.1.0

Lightweight migration tool for Hack

  Sources   Download

MIT

The Requires

 

The Development Requires

by Noritaka Horio

lightweight migration mysql db

22/05 2016

0.5.0

0.5.0.0

Lightweight migration tool for Hack

  Sources   Download

MIT

The Requires

 

The Development Requires

by Noritaka Horio

lightweight migration mysql db

22/05 2016

0.4.0

0.4.0.0

Lightweight migration tool for Hack

  Sources   Download

MIT

The Requires

 

The Development Requires

by Noritaka Horio

lightweight migration mysql db

21/05 2016

0.3.0

0.3.0.0

Lightweight migration tool for Hack

  Sources   Download

MIT

The Requires

 

The Development Requires

by Noritaka Horio

lightweight migration mysql db

21/05 2016

0.2.0

0.2.0.0

Lightweight migration tool for Hack

  Sources   Download

MIT

The Requires

 

The Development Requires

by Noritaka Horio

lightweight migration mysql db

20/05 2016

0.1.1

0.1.1.0

Lightweight migration tool for Hack

  Sources   Download

MIT

The Requires

 

The Development Requires

by Noritaka Horio

lightweight migration mysql db

15/05 2016

0.1.0

0.1.0.0

Lightweight migration tool for Hack

  Sources   Download

MIT

The Requires

 

The Development Requires

by Noritaka Horio

lightweight migration mysql db