blob: b984253093c57451fd532dd15a228a735bdf58c6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<?php
# init file to set up the database
# TODO: pretty html
$db = new db();
$db->createTables();
$db->close();
echo "<p>Successfully created the database.</p>";
# rename this file to avoid setting up the tables twice
rename(ABSPATH . 'setup.php', ABSPATH . '_setup.php');
|