dbtlr/silex-doctrine-migrations
最新稳定版本:v1.0.0
Composer 安装命令:
composer require dbtlr/silex-doctrine-migrations
包简介
Doctrine migration service provider for Silex
README 文档
README
This is a wrapper for the Doctrine Migrations project.
For more information on how to use the schema manager, please see Doctrine's Schema Manager documentation.
Install via Composer
composer.phar require dbtlr/silex-doctrine-migrations
Add service provider
$app->register(new \Dbtlr\MigrationProvider\Provider\MigrationServiceProvider(), array( 'db.migrations.path' => __DIR__ . '/../app/migrations', ));
Config options
db.migrations.path(required): The full path where you want to store your migration classes.db.migrations.table_name(optional): The name of the table that we store meta information about the state of migrations. Defaults to: migration_versions.db.migrations.namespace(optional): The namespace for the migration classes (defaults to: DoctrineMigration).db.migrations.name(optional): TThe name of the migrations to use.
Available commands
- migrations:execute Execute a single migration version up or down manually.
- migrations:generate Generate a blank migration class.
- migrations:migrate Execute a migration to a specified version or the latest available version.
- migrations:status View the status of a set of migrations.
- migrations:version Manually add and delete migration versions from the version table.
统计信息
- 总下载量: 22.85k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 12
- 点击次数: 1
- 依赖项目数: 4
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2015-02-17