@@ -22,7 +22,7 @@ public function up(): void
2222 ]);
2323 $ this ->forge ->addPrimaryKey ('id ' );
2424 $ this ->forge ->addUniqueKey ('username ' );
25- $ this ->forge ->createTable ('users ' , true );
25+ $ this ->forge ->createTable ('users ' );
2626
2727 /*
2828 * Auth Identities Table
@@ -46,7 +46,7 @@ public function up(): void
4646 $ this ->forge ->addUniqueKey (['type ' , 'secret ' ]);
4747 $ this ->forge ->addKey ('user_id ' );
4848 $ this ->forge ->addForeignKey ('user_id ' , 'users ' , 'id ' , '' , 'CASCADE ' );
49- $ this ->forge ->createTable ('auth_identities ' , true );
49+ $ this ->forge ->createTable ('auth_identities ' );
5050
5151 /**
5252 * Auth Login Attempts Table
@@ -67,7 +67,7 @@ public function up(): void
6767 $ this ->forge ->addKey (['id_type ' , 'identifier ' ]);
6868 $ this ->forge ->addKey ('user_id ' );
6969 // 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 ' );
7171
7272 /*
7373 * Auth Token Login Attempts Table
@@ -87,7 +87,7 @@ public function up(): void
8787 $ this ->forge ->addKey (['id_type ' , 'identifier ' ]);
8888 $ this ->forge ->addKey ('user_id ' );
8989 // 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 ' );
9191
9292 /*
9393 * Auth Remember Tokens (remember-me) Table
@@ -105,7 +105,7 @@ public function up(): void
105105 $ this ->forge ->addPrimaryKey ('id ' );
106106 $ this ->forge ->addUniqueKey ('selector ' );
107107 $ this ->forge ->addForeignKey ('user_id ' , 'users ' , 'id ' , '' , 'CASCADE ' );
108- $ this ->forge ->createTable ('auth_remember_tokens ' , true );
108+ $ this ->forge ->createTable ('auth_remember_tokens ' );
109109
110110 // Groups Users Table
111111 $ this ->forge ->addField ([
@@ -116,7 +116,7 @@ public function up(): void
116116 ]);
117117 $ this ->forge ->addPrimaryKey ('id ' );
118118 $ this ->forge ->addForeignKey ('user_id ' , 'users ' , 'id ' , '' , 'CASCADE ' );
119- $ this ->forge ->createTable ('auth_groups_users ' , true );
119+ $ this ->forge ->createTable ('auth_groups_users ' );
120120
121121 // Users Permissions Table
122122 $ this ->forge ->addField ([
@@ -127,7 +127,7 @@ public function up(): void
127127 ]);
128128 $ this ->forge ->addPrimaryKey ('id ' );
129129 $ this ->forge ->addForeignKey ('user_id ' , 'users ' , 'id ' , '' , 'CASCADE ' );
130- $ this ->forge ->createTable ('auth_permissions_users ' , true );
130+ $ this ->forge ->createTable ('auth_permissions_users ' );
131131 }
132132
133133 //--------------------------------------------------------------------
0 commit comments