11 lines
264 B
PHP
11 lines
264 B
PHP
<?php
|
|
require_once __DIR__ . '/config.php';
|
|
|
|
try {
|
|
$sql = file_get_contents(__DIR__ . '/migrations_001.sql');
|
|
db()->exec($sql);
|
|
echo "Database setup successful.";
|
|
} catch (PDOException $e) {
|
|
echo "Error setting up database: " . $e->getMessage();
|
|
}
|