TKK_E32230273/migrate_account_finger.php

11 lines
331 B
PHP

<?php
include 'koneksi.php';
try {
// Modify finger_id to text to accommodate base64 encoded credential IDs
$pdo->exec("ALTER TABLE account MODIFY COLUMN finger_id TEXT NULL");
echo "Success modifying finger_id to TEXT\n";
} catch (Exception $e) {
echo "Error modifying finger_id: " . $e->getMessage() . "\n";
}
?>