* hardcode sql limits within their respective components instead of having them configurable * creating a new DBTypeList defaults it to being unlimited * SQL_LIMIT_NONE (0) > removed as it only existed for consistency * SQL_LIMIT_DEFAULT (300) > frontend / Listview::DEFAULT_SIZE * SQL_LIMIT_SEARCH (500) > Search::DEFAULT_MAX_RESULTS * SQL_LIMIT_QUICKSEARCH (10) > Search::SUGGESTIONS_MAX_RESULTS
4 lines
240 B
SQL
4 lines
240 B
SQL
DELETE FROM aowow_config WHERE `key` = 'sql_limit_default';
|
|
DELETE FROM aowow_config WHERE `key` = 'sql_limit_none';
|
|
DELETE FROM aowow_config WHERE `key` = 'sql_limit_quicksearch';
|
|
DELETE FROM aowow_config WHERE `key` = 'sql_limit_search';
|