vados/phalcon-migration-runner

Easy migration runner for Phalcon framework

0.1 2019-02-25 18:05 UTC

This package is auto-updated.

Last update: 2024-04-26 05:52:51 UTC


README

Packagist PHP from Packagist Packagist GitHub Issues Scrutinizer Code Quality Travis CI Status

Works with PHP 7.1+

Usage

You can run command 'migration_runner' for creating and applying or reverting migration to your database.

./vendor/bin/migration_runner <method>

By default, runner call method 'help'.

Available methods

  • help - Show help information
  • create {name} - Create new migration
  • up {runCount=0} - Apply new migrations
  • down {runCount=1} - Revert some migration

In your migrations you should use Phalcon Pdo Adapter provided by method 'getDbConnection'. You can find API definition in Phalcon documentation

public function up(): bool
{
    $this->getDbConnection()->createTable('foo', null, [
        'columns' => [
            new \Phalcon\Db\Column('bar', [
                'type' => \Phalcon\Db\Column::TYPE_INTEGER
            ])
        ]
    ]);
    
    return true;
}

Example

Create migration (For first run runner create config)

$ ./vendor/bin/migration_runner create new_migration

Enter database adapter (default: sqlite): sqlite
Enter database name (default: phalcon): test.db
Config generated in /my_project/migration_runner.config.php
Migration /my_project/migrations/m1522260172_new_migration.php created!

Describe your migration

<?php

use Phalcon\Db\Column;
use Vados\MigrationRunner\migration\Migration;

class m1522260172_new_migration extends Migration
{
    public function up(): bool
    {
        $this->getDbConnection()->createTable('foo', null, [
            'columns' => [
                new Column('bar', [
                    'type' => Column::TYPE_INTEGER
                ])
            ]
        ]);

        return true;
    }

    public function down(): bool
    {
        $this->getDbConnection()->dropTable('foo');
        return true;
    }
}

Apply your migration

$ ./migration_runner up

m1522260172_new_migration.php
Apply the above migrations? (yes|no) [yes]: yes
Migration m1522260172_new_migration.php: true

Installation

Use composer for installation

composer require vados/phalcon-migration-runner

Contribution guidelines

  • Writing tests
  • Code review
  • Guidelines accord