Skip to content

Commit

Permalink
Merge pull request #759 from cakephp/cleanup-docs
Browse files Browse the repository at this point in the history
Remove old config file and improve readme
  • Loading branch information
markstory authored Oct 22, 2024
2 parents 3518c48 + 1f65760 commit 4621df2
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 6 deletions.
5 changes: 0 additions & 5 deletions .stickler.yml

This file was deleted.

16 changes: 15 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ bin/cake plugin load Migrations
```
Or you can manually add the loading statement in the **src/Application.php** file of your application:
```php
public function bootstrap(): void
{
Expand All @@ -37,7 +38,20 @@ public function bootstrap(): void
}
```

Additionally, you will need to configure the ``default`` database configuration in your **config/app.php** file.
### 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:

```php
// in app/config/app_local.php
$config = [
// Other configuration
'Migrations' => ['backend' => 'builtin'],
];

```

## Documentation

Expand Down

0 comments on commit 4621df2

Please sign in to comment.