We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
users
1 parent fa994dc commit effcabeCopy full SHA for effcabe
src/Database/Migrations/2020-12-28-223112_create_auth_tables.php
@@ -136,13 +136,13 @@ public function down(): void
136
{
137
$this->db->disableForeignKeyChecks();
138
139
- $this->forge->dropTable('users', true);
140
$this->forge->dropTable('auth_logins', true);
141
$this->forge->dropTable('auth_token_logins', true);
142
$this->forge->dropTable('auth_remember_tokens', true);
143
$this->forge->dropTable('auth_identities', true);
144
$this->forge->dropTable('auth_groups_users', true);
145
$this->forge->dropTable('auth_permissions_users', true);
+ $this->forge->dropTable('users', true);
146
147
$this->db->enableForeignKeyChecks();
148
}
0 commit comments