Skip to content

Commit

Permalink
Change details in CHANGELOG.md, README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
rougin committed Oct 19, 2024
1 parent f43bbb7 commit 4b23ae2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ All notable changes to `Refinery` will be documented in this file.
- Code coverage provider to `Codecov`
- Code documentation by `php-cs-fixer`
- Improved code quality by `phpstan`
- Simplified code structure
- Reworked entire code structure
- Workflow provider to `Github Actions`

### Removed
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ $ vendor/bin/refinery create create_users_table
```

``` php
// acme/application/migrations/20241019044009_create_users_table.php
// ciacme/application/migrations/20241019044009_create_users_table.php

use Rougin\Refinery\Migration;

Expand Down Expand Up @@ -94,7 +94,7 @@ $ vendor/bin/refinery create add_name_in_users_table
```

``` php
// acme/application/migrations/20241019044035_add_name_in_users_table.php
// ciacme/application/migrations/20241019044035_add_name_in_users_table.php

use Rougin\Refinery\Migration;

Expand Down Expand Up @@ -179,7 +179,7 @@ $ vendor/bin/refinery reset

### Creating from database

This package also allows to create a database migration based on the existing database table. Prior to create the specified command, kindly ensure that the specified table already exists in the database schema:
This package also allows to create a database migration based on the existing database table. Prior in creating its database migration, kindly ensure that the specified table already exists in the database schema:

``` sql
CREATE TABLE IF NOT EXISTS `users` (
Expand All @@ -197,7 +197,7 @@ $ vendor/bin/refinery create create_users_table --from-database
```

``` php
// acme/application/migrations/20241019044729_create_users_table.php
// ciacme/application/migrations/20241019044729_create_users_table.php

use Rougin\Refinery\Migration;

Expand Down

0 comments on commit 4b23ae2

Please sign in to comment.