hanyuu/database/2024_07_30_001441_removed_device_attempts_field.php

9 lines
296 B
PHP

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