diff --git a/README.md b/README.md index dcfaae7a8..1ea714a05 100644 --- a/README.md +++ b/README.md @@ -106,35 +106,6 @@ composer dump-autoload > That's it, now just execute the project on your specified domain entry point pointing to public folder inside installation directory. -### 5. Migration from v0.1.0 to v0.1.1 (Only for git users, everyone have to download fresh copy or follow from step 1 and use the same database configuration) - -**Run commands below:** - -> **php artisan migrate** - -> **php artisan vendor:publish** - - -### 6. Migration from v0.1.1 to v0.1.2 - -**Run commands below:** - -> **php artisan migrate** - -> **php artisan vendor:publish** - - -### 7. Migration from v0.1.2 to v0.1.3 - -**Run commands below:** - -> **composer install** - -> **php artisan migrate** - -> **php artisan vendor:publish** - - ### 7. License Bagisto is a truly opensource E-Commerce framework which will always be free under the [MIT License](https://opensource.org/licenses/MIT). diff --git a/migration guide.md b/migration guide.md new file mode 100644 index 000000000..6b1e4a457 --- /dev/null +++ b/migration guide.md @@ -0,0 +1,39 @@ +# Migration Guide: + +#### Note: Only for git users or updating by zip file from the release section from repository + +* Better way to update Bagisto is to overwrite the code by manually downloading the zip file and extract it on the main project directory. + + or +* Delete or rename the old installation directory and install the new one using the installation process in the readme of Bagisto. + + +* Follow these commands below if you're doing overwrite else use your old .env file before deleting/backing up old bagisto release and installing the new release of Bagisto. + +## 1. Migration from v0.1.0 to v0.1.1 + +**Run commands below:** + +> **php artisan migrate** + +> **php artisan vendor:publish** + + +## 2. Migration from v0.1.1 to v0.1.2 + +**Run commands below:** + +> **php artisan migrate** + +> **php artisan vendor:publish** + + +## 3. Migration from v0.1.2 to v0.1.3 + +**Run commands below:** + +> **composer install** + +> **php artisan migrate** + +> **php artisan vendor:publish**