summaryrefslogtreecommitdiff
path: root/db/update.d/20_LogEntriesTable.php
diff options
context:
space:
mode:
authormsquare <msquare@notrademark.de>2016-08-22 19:32:54 +0200
committermsquare <msquare@notrademark.de>2016-08-22 19:32:54 +0200
commit3f4be08865296431d070e4386a252dac84d528ec (patch)
tree08ab8c245137dff544c7c928b4a924e604b41ece /db/update.d/20_LogEntriesTable.php
parent14d20933f7dcbf6d4aab3ee2c6444a19c7afdfd6 (diff)
remove old update script
Diffstat (limited to 'db/update.d/20_LogEntriesTable.php')
-rw-r--r--db/update.d/20_LogEntriesTable.php19
1 files changed, 0 insertions, 19 deletions
diff --git a/db/update.d/20_LogEntriesTable.php b/db/update.d/20_LogEntriesTable.php
deleted file mode 100644
index 5ea82efc..00000000
--- a/db/update.d/20_LogEntriesTable.php
+++ /dev/null
@@ -1,19 +0,0 @@
-<?php
-
-if(sql_num_query("SHOW TABLES LIKE 'LogEntries'") == 0) {
- sql_query("CREATE TABLE `LogEntries` (
- `id` INT NOT NULL AUTO_INCREMENT PRIMARY KEY ,
- `timestamp` INT NOT NULL ,
- `nick` VARCHAR( 23 ) NOT NULL ,
- `message` TEXT NOT NULL ,
- INDEX ( `timestamp` )
- ) ENGINE = InnoDB;");
- $applied = true;
-}
-
-if(sql_num_query("SHOW TABLES LIKE 'ChangeLog'") == 0) {
- sql_query("DROP TABLE `ChangeLog`");
- $applied = true;
-}
-
-?> \ No newline at end of file