hanyuu/database/2024_07_30_001441_removed_device_attempts_field.php

10 lines
304 B
PHP
Raw Normal View History

<?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');
}
}