hanyuu/database/2024_07_30_001441_removed_device_attempts_field.php

10 lines
296 B
PHP
Raw Normal View History

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