new-bigly-chat/scripts/init.php
2024-12-04 22:44:00 -05:00

11 lines
No EOL
197 B
PHP
Executable file

<?php
require("../libs/test_secret.php");
global $db;
$sql = file_get_contents('../scripts/init.sql', true);
$db->exec($sql);
echo "Database was set up.";
?>