<?php use Phinx\Migration\AbstractMigration; class CreateUsersTable extends AbstractMigration { // Migrate Up public function up() { $table = $this->table('users'); $table->addColumn('id', 'integer') ->addColumn('name', 'string') ->create(); } // Migrate Down public function down() { $this->execute('DELETE FROM users'); } } migr8 https://github.com/kwatch/migr8 Ruby製 SQL Phpmig https://github.com/