cakephp/migrations
Fork: 116 Star: 138 (更新于 2024-11-10 04:51:36)
license: NOASSERTION
Language: PHP .
CakePHP database migrations plugin
最后发布版本: 4.4.1 ( 2024-09-16 23:17:15)
Migrations plugin for CakePHP
This is a Database Migrations system for CakePHP.
The plugin consists of a CakePHP CLI wrapper for the Phinx migrations library.
This branch is for use with CakePHP 5.x. See version map for details.
Installation
You can install this plugin into your CakePHP application using Composer.
Run the following command
composer require cakephp/migrations
Configuration
You can load the plugin using the shell command:
bin/cake plugin load Migrations
Or you can manually add the loading statement in the src/Application.php file of your application:
public function bootstrap(): void
{
parent::bootstrap();
$this->addPlugin('Migrations');
}
Enabling the builtin backend
In a future release, migrations will be switching to a new backend based on the CakePHP ORM. We're aiming to be compatible with as many existing migrations as possible, and could use your feedback. Enable the new backend with:
// in app/config/app_local.php
$config = [
// Other configuration
'Migrations' => ['backend' => 'builtin'],
];
Documentation
Full documentation of the plugin can be found on the CakePHP Cookbook.
最近版本更新:(数据更新于 2024-09-19 16:31:55)
2024-09-16 23:17:15 4.4.1
2024-08-24 05:40:04 4.4.0
2024-07-30 22:42:04 4.3.2
2024-05-13 23:48:15 4.3.1
2024-05-03 11:24:50 4.3.0
2024-03-02 09:26:50 4.2.0
2023-11-11 11:29:18 4.1.1
2023-09-23 09:20:03 4.1.0
2023-09-22 16:41:24 3.9.0
2023-09-22 09:43:23 4.0.2
主题(topics):
cakephp, cakephp-plugin, database-migrations, php
cakephp/migrations同语言 PHP最近更新仓库
2024-11-20 23:58:25 laravel/framework
2024-11-20 18:39:23 danielmiessler/SecLists
2024-11-16 21:54:23 w7corp/easywechat
2024-11-16 04:49:03 coollabsio/coolify
2024-11-13 23:19:14 symfony/symfony
2024-11-13 22:53:21 symfony/var-dumper