Skip to content

Commit 098fc70

Browse files
authored
Release 4.6.6
2 parents 12f0ff7 + 756a278 commit 098fc70

File tree

3 files changed

+17
-1
lines changed

3 files changed

+17
-1
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
66
and 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

app/defines.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
namespace UserFrosting;
1212

1313
// Some standard defines
14-
define('UserFrosting\VERSION', '4.6.4');
14+
define('UserFrosting\VERSION', '4.6.6');
1515
define('UserFrosting\DS', '/');
1616
define('UserFrosting\PHP_MIN_VERSION', '^7.3 | ^8.0');
1717
define('UserFrosting\PHP_RECOMMENDED_VERSION', '^8.0');

app/sprinkles/account/src/Database/Migrations/v420/AddingForeignKeys.php

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,17 @@
2121
*/
2222
class 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
*/

0 commit comments

Comments
 (0)