hanyuu/database/2024_07_30_001441_removed_device_attempts_field.php

9 lines
304 B
PHP

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