File tree Expand file tree Collapse file tree 3 files changed +17
-1
lines changed
sprinkles/account/src/Database/Migrations/v420 Expand file tree Collapse file tree 3 files changed +17
-1
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file.
55The format is based on [ Keep a Changelog] ( http://keepachangelog.com/en/1.0.0/ )
66and this project adheres to [ Semantic Versioning] ( http://semver.org/spec/v2.0.0.html ) .
77
8+ ## [ v4.6.6] ( https://github.com/userfrosting/UserFrosting/compare/v4.6.5...v4.6.6 )
9+
10+ ### Fix
11+ - Added dependencies to AddingForeignKeys Migration ([ #1212 ] ( https://github.com/userfrosting/UserFrosting/pull/1212 ) )
12+
813## [ v4.6.5] ( https://github.com/userfrosting/UserFrosting/compare/v4.6.4...v4.6.5 )
914
1015### Fix
Original file line number Diff line number Diff line change 1111namespace UserFrosting ;
1212
1313// Some standard defines
14- define ('UserFrosting\VERSION ' , '4.6.4 ' );
14+ define ('UserFrosting\VERSION ' , '4.6.6 ' );
1515define ('UserFrosting\DS ' , '/ ' );
1616define ('UserFrosting\PHP_MIN_VERSION ' , '^7.3 | ^8.0 ' );
1717define ('UserFrosting\PHP_RECOMMENDED_VERSION ' , '^8.0 ' );
Original file line number Diff line number Diff line change 2121 */
2222class AddingForeignKeys extends Migration
2323{
24+ public static $ dependencies = [
25+ '\UserFrosting\Sprinkle\Account\Database\Migrations\v400\GroupsTable ' ,
26+ '\UserFrosting\Sprinkle\Account\Database\Migrations\v400\UsersTable ' ,
27+ '\UserFrosting\Sprinkle\Account\Database\Migrations\v400\VerificationsTable ' ,
28+ '\UserFrosting\Sprinkle\Account\Database\Migrations\v400\ActivitiesTable ' ,
29+ '\UserFrosting\Sprinkle\Account\Database\Migrations\v400\PasswordResetsTable ' ,
30+ '\UserFrosting\Sprinkle\Account\Database\Migrations\v400\PermissionsTable ' , // which itself requires RolesTable and PermissionsRolesTable
31+ '\UserFrosting\Sprinkle\Account\Database\Migrations\v400\PersistencesTable ' ,
32+ '\UserFrosting\Sprinkle\Account\Database\Migrations\v400\RoleUsersTable ' ,
33+ ];
34+
2435 /**
2536 * @var array List of operation to do
2637 */
You can’t perform that action at this time.
0 commit comments