Drop SCORE_DATETIME/NOW - all the databases we care about now support TIMESTAMP/CURRENT_TIMESTAMP

This commit is contained in:
Shish
2019-11-03 18:28:05 +00:00
parent 1210498e41
commit 6bc33ee691
16 changed files with 33 additions and 40 deletions

View File

@@ -31,7 +31,7 @@ class ImageBan extends Extension
$database->create_table("image_bans", "
id SCORE_AIPK,
hash CHAR(32) NOT NULL,
date SCORE_DATETIME DEFAULT SCORE_NOW,
date TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
reason TEXT NOT NULL
");
$config->set_int("ext_imageban_version", 1);