2024-07-30 00:16:42 +00:00
|
|
|
<?php
|
2024-11-13 23:58:43 +00:00
|
|
|
use Index\Db\DbConnection;
|
|
|
|
use Index\Db\Migration\DbMigration;
|
2024-07-30 00:16:42 +00:00
|
|
|
|
2024-11-13 23:58:43 +00:00
|
|
|
final class RemovedDeviceAttemptsField_20240730_001441 implements DbMigration {
|
|
|
|
public function migrate(DbConnection $conn): void {
|
2024-07-30 00:16:42 +00:00
|
|
|
$conn->execute('ALTER TABLE hau_oauth2_device DROP COLUMN dev_attempts');
|
|
|
|
}
|
|
|
|
}
|