[ticket/12932] Add method for allowing override of \phpbb\datetime class
* marc1706/ticket/12932:
[ticket/12932] Remove set_datetime_class method from user class
[ticket/12932] Fix tests and calls to create_datetime
[ticket/12932] Add method for getting the datetime class and allow overriding
[ticket/12956] Ensure the contact columns have been added before using t...
* nickvergessen/ticket/12956:
[ticket/12956] Ensure the contact columns have been added before using them
Ticket/12671 Possibility to use NOT LIKE expression
* Geolim4/ticket/12671:
[ticket/12671] Possibility to use NOT LIKE expression
[ticket/12671] Possibility to use NOT LIKE expression
[ticket/12671] Possibility to use NOT LIKE expression
[ticket/12671] Possibility to use NOT LIKE expression
[ticket/12671] Possibility to use NOT LIKE expression
* github-nickvergessen/ticket/12710:
[ticket/12710] Fix missing closing bracket
[ticket/12710] Prefix column so it does not start with a number
[ticket/12710] Pass the original column data to the create function
[ticket/12710] Fix foreach generation
[ticket/12710] Compare to uppercase version
[ticket/12710] Do not try to match the uniqueness in the query
[ticket/12710] Remove table_name from index_name before deleting and recreating them
[ticket/12710] Can not use upper in oracles where claus
[ticket/12710] Correctly select index name and compare to column name
[ticket/12710] Fix "ORA-00972: identifier is too long [972]" on oracle
[ticket/12710] Fix problems with creating unique indexes on oracle
[ticket/12710] Correctly fetch unique and normal indexes only in MSSQL
[ticket/12710] Fix changing the column type on oracle
[ticket/12710] Prepare get_existing_indexes() for other DBMS
[ticket/12873] Test the correct identifier in \phpbb\db\tools
* Nicofuma/ticket/12873:
[ticket/12873] Add migration to rename the index
[ticket/12873] Don not touch the existing migrations
[ticket/12873] Test the good identifier in \phpbb\db\tools
[ticket/12882] Update search_type when it's not prefixed by phpbb_search
* Nicofuma/ticket/12882:
[ticket/12882] Use a new migration
[ticket/12882] Update search_type when it's not prefixed by phpbb_search
We need to rename the index key because with the default prefix (phpbb_)
this key has a length of 31. And because we don't accept the keys longer
than 30 characters we should ensure that by default no key is longer than
30 characters.
PHPBB3-12873
Using profilefield_base_migration.php to create a custom profile
field with SQlite3 DBMS returns warning:
[phpBB Debug] PHP Warning: in file [ROOT]/phpbb/db/driver/sqlite3.php
on line 218: SQLite3Result::fetchArray(): Unable to execute statement:
constraint failed
This is due passing filed_id and lang_id to the DB driver in
unspecified format. As they are always int we should cast them
in int to prevent the error message appearance.
PHPBB3-12846