blob: 018781d0f674fcfe1518504386c1afa8bae0f1a3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<?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');
exit;
|