@@ -22,7 +22,7 @@ public function up(): void
22
22
]);
23
23
$ this ->forge ->addPrimaryKey ('id ' );
24
24
$ this ->forge ->addUniqueKey ('username ' );
25
- $ this ->forge ->createTable ('users ' , true );
25
+ $ this ->forge ->createTable ('users ' );
26
26
27
27
/*
28
28
* Auth Identities Table
@@ -46,7 +46,7 @@ public function up(): void
46
46
$ this ->forge ->addUniqueKey (['type ' , 'secret ' ]);
47
47
$ this ->forge ->addKey ('user_id ' );
48
48
$ this ->forge ->addForeignKey ('user_id ' , 'users ' , 'id ' , '' , 'CASCADE ' );
49
- $ this ->forge ->createTable ('auth_identities ' , true );
49
+ $ this ->forge ->createTable ('auth_identities ' );
50
50
51
51
/**
52
52
* Auth Login Attempts Table
@@ -67,7 +67,7 @@ public function up(): void
67
67
$ this ->forge ->addKey (['id_type ' , 'identifier ' ]);
68
68
$ this ->forge ->addKey ('user_id ' );
69
69
// NOTE: Do NOT delete the user_id or identifier when the user is deleted for security audits
70
- $ this ->forge ->createTable ('auth_logins ' , true );
70
+ $ this ->forge ->createTable ('auth_logins ' );
71
71
72
72
/*
73
73
* Auth Token Login Attempts Table
@@ -87,7 +87,7 @@ public function up(): void
87
87
$ this ->forge ->addKey (['id_type ' , 'identifier ' ]);
88
88
$ this ->forge ->addKey ('user_id ' );
89
89
// NOTE: Do NOT delete the user_id or identifier when the user is deleted for security audits
90
- $ this ->forge ->createTable ('auth_token_logins ' , true );
90
+ $ this ->forge ->createTable ('auth_token_logins ' );
91
91
92
92
/*
93
93
* Auth Remember Tokens (remember-me) Table
@@ -105,7 +105,7 @@ public function up(): void
105
105
$ this ->forge ->addPrimaryKey ('id ' );
106
106
$ this ->forge ->addUniqueKey ('selector ' );
107
107
$ this ->forge ->addForeignKey ('user_id ' , 'users ' , 'id ' , '' , 'CASCADE ' );
108
- $ this ->forge ->createTable ('auth_remember_tokens ' , true );
108
+ $ this ->forge ->createTable ('auth_remember_tokens ' );
109
109
110
110
// Groups Users Table
111
111
$ this ->forge ->addField ([
@@ -116,7 +116,7 @@ public function up(): void
116
116
]);
117
117
$ this ->forge ->addPrimaryKey ('id ' );
118
118
$ this ->forge ->addForeignKey ('user_id ' , 'users ' , 'id ' , '' , 'CASCADE ' );
119
- $ this ->forge ->createTable ('auth_groups_users ' , true );
119
+ $ this ->forge ->createTable ('auth_groups_users ' );
120
120
121
121
// Users Permissions Table
122
122
$ this ->forge ->addField ([
@@ -127,7 +127,7 @@ public function up(): void
127
127
]);
128
128
$ this ->forge ->addPrimaryKey ('id ' );
129
129
$ this ->forge ->addForeignKey ('user_id ' , 'users ' , 'id ' , '' , 'CASCADE ' );
130
- $ this ->forge ->createTable ('auth_permissions_users ' , true );
130
+ $ this ->forge ->createTable ('auth_permissions_users ' );
131
131
}
132
132
133
133
//--------------------------------------------------------------------
0 commit comments