34830-vm/db/migrate.php
Flatlogic Bot 4f8582c432 herway
2025-10-09 13:12:06 +00:00

13 lines
317 B
PHP

<?php
require_once __DIR__ . '/config.php';
try {
$pdo = db();
$sql = file_get_contents(__DIR__ . '/migrations/001_create_users_table.sql');
$pdo->exec($sql);
echo "Migration successful: users table created.\n";
} catch (PDOException $e) {
die("Migration failed: " . $e->getMessage() . "\n");
}