@@ -83,18 +83,6 @@ public function up(): void
83
83
$ this ->forge ->addForeignKey ('user_id ' , 'users ' , 'id ' , '' , 'CASCADE ' );
84
84
$ this ->forge ->createTable ('auth_remember_tokens ' , true );
85
85
86
- // Password Reset Table
87
- $ this ->forge ->addField ([
88
- 'id ' => ['type ' => 'int ' , 'constraint ' => 11 , 'unsigned ' => true , 'auto_increment ' => true ],
89
- 'email ' => ['type ' => 'varchar ' , 'constraint ' => 255 ],
90
- 'ip_address ' => ['type ' => 'varchar ' , 'constraint ' => 255 ],
91
- 'user_agent ' => ['type ' => 'varchar ' , 'constraint ' => 255 , 'null ' => true ],
92
- 'token ' => ['type ' => 'varchar ' , 'constraint ' => 255 , 'null ' => true ],
93
- 'created_at ' => ['type ' => 'datetime ' , 'null ' => false ],
94
- ]);
95
- $ this ->forge ->addPrimaryKey ('id ' );
96
- $ this ->forge ->createTable ('auth_reset_attempts ' , true );
97
-
98
86
// Activation Attempts Table
99
87
$ this ->forge ->addField ([
100
88
'id ' => ['type ' => 'int ' , 'constraint ' => 11 , 'unsigned ' => true , 'auto_increment ' => true ],
@@ -138,7 +126,6 @@ public function down(): void
138
126
$ this ->forge ->dropTable ('users ' , true );
139
127
$ this ->forge ->dropTable ('auth_logins ' , true );
140
128
$ this ->forge ->dropTable ('auth_remember_tokens ' , true );
141
- $ this ->forge ->dropTable ('auth_reset_attempts ' , true );
142
129
$ this ->forge ->dropTable ('auth_activation_attempts ' , true );
143
130
$ this ->forge ->dropTable ('auth_access_tokens ' , true );
144
131
$ this ->forge ->dropTable ('auth_identities ' , true );
0 commit comments