Revert "different hack for old sqlite"

This reverts commit 634124e17fd036575273eb93f6917ae35e24fcf8.
This commit is contained in:
Shish
2020-10-26 22:49:39 +00:00
parent 634124e17f
commit 56f1fac4c5
3 changed files with 8 additions and 9 deletions

View File

@ -217,7 +217,6 @@ class SQLite extends DBEngine
$data = str_replace(SCORE::BOOL_Y, "'$this->BOOL_Y'", $data);
$data = str_replace(SCORE::BOOL_N, "'$this->BOOL_N'", $data);
$data = str_replace(SCORE::BOOL, "CHAR(1)", $data);
$data = str_replace("DEFAULT FALSE", "DEFAULT 0", $data);
return $data;
}