14 lines
327 B
PHP
14 lines
327 B
PHP
<?php
|
|
require_once __DIR__ . '/config.php';
|
|
|
|
$sql = file_get_contents(__DIR__ . '/migrations/002_create_users_table.sql');
|
|
|
|
try {
|
|
$pdo = db();
|
|
$pdo->exec($sql);
|
|
echo "Migration 002_create_users_table executed successfully.\n";
|
|
} catch (PDOException $e) {
|
|
die("Migration failed: " . $e->getMessage() . "\n");
|
|
}
|
|
|