aboutsummaryrefslogtreecommitdiff
path: root/bootstrap
diff options
context:
space:
mode:
Diffstat (limited to 'bootstrap')
-rwxr-xr-xbootstrap/setup.php13
1 files changed, 0 insertions, 13 deletions
diff --git a/bootstrap/setup.php b/bootstrap/setup.php
deleted file mode 100755
index 018781d..0000000
--- a/bootstrap/setup.php
+++ /dev/null
@@ -1,13 +0,0 @@
-<?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;