12 lines
288 B
PHP
12 lines
288 B
PHP
<?php
|
|
require_once __DIR__ . '/config.php';
|
|
|
|
try {
|
|
$pdo = db();
|
|
$sql = file_get_contents(__DIR__ . '/migrations/001_create_scripts_table.sql');
|
|
$pdo->exec($sql);
|
|
echo "Migration successful.";
|
|
} catch (PDOException $e) {
|
|
echo "Migration failed: " . $e->getMessage();
|
|
}
|