Skip to content
Snippets Groups Projects
Commit b0788d4e authored by Gael Yvert's avatar Gael Yvert
Browse files

add roles table tracking, and explain the possible issue when retsoring it

parent f90d6cf4
No related branches found
No related tags found
No related merge requests found
......@@ -33,6 +33,7 @@ git add database/seeds/FunctionalityTrackingByIseedMenusTableSeeder.php
git add database/seeds/FunctionalityTrackingByIseedMenuItemsTableSeeder.php
git add database/seeds/FunctionalityTrackingByIseedPermissionsTableSeeder.php
git add database/seeds/FunctionalityTrackingByIseedPermissionRoleTableSeeder.php
git add database/seeds/FunctionalityTrackingByIseedRolesTableSeeder.php
git add database/seeds/FunctionalityTrackingByIseedSettingsTableSeeder.php
git commit -m "Updated seeders for tables of application functionalities"
......
......@@ -4,7 +4,10 @@
# This script is for developers of MyLabStocks
#
# It uses seeder files produced by gitbreadmenus.sh
# to restore BREADs and MENUs
# to restore BREADs, MENUs, ROLEs and PERMISSIONs
#
# Note that you may have conflicts between your current USERS or USER_ROLES tables
# and the ROLES seeder, for example if the USERS table contains a role_id entry that is no longer present in the seeder. If this happens, edit your users and user_roles tables and run the seeders again.
#
##########################################
......@@ -13,5 +16,6 @@ php artisan db:seed --class=FunctionalityTrackingByIseedDataRowsTableSeeder
php artisan db:seed --class=FunctionalityTrackingByIseedMenusTableSeeder
php artisan db:seed --class=FunctionalityTrackingByIseedMenuItemsTableSeeder
php artisan db:seed --class=FunctionalityTrackingByIseedPermissionsTableSeeder
php artisan db:seed --class=FunctionalityTrackingByIseedRolesTableSeeder
php artisan db:seed --class=FunctionalityTrackingByIseedPermissionRoleTableSeeder
php artisan db:seed --class=FunctionalityTrackingByIseedSettingsTableSeeder
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment