aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/docs/coding-guidelines.html
diff options
context:
space:
mode:
authorAndreas Fischer <bantu@phpbb.com>2012-12-04 13:01:19 +0100
committerAndreas Fischer <bantu@phpbb.com>2012-12-04 13:01:19 +0100
commit78479a6bf0e70bfd32bc7ffaff6bb5b9c516ca67 (patch)
tree72f49c3e266fb499f8f8f59afc4872b2951bfa6c /phpBB/docs/coding-guidelines.html
parent8622b1648d9eb45cf02b8c3d577fb2158415487d (diff)
parentb67f112e03cf37436bdd650ea4b9a75b35000fdd (diff)
downloadforums-78479a6bf0e70bfd32bc7ffaff6bb5b9c516ca67.tar
forums-78479a6bf0e70bfd32bc7ffaff6bb5b9c516ca67.tar.gz
forums-78479a6bf0e70bfd32bc7ffaff6bb5b9c516ca67.tar.bz2
forums-78479a6bf0e70bfd32bc7ffaff6bb5b9c516ca67.tar.xz
forums-78479a6bf0e70bfd32bc7ffaff6bb5b9c516ca67.zip
Merge remote-tracking branch 'p/ticket/10091' into develop
* p/ticket/10091: [ticket/10091] Bump minimum supported postgresql version to 8.3.
Diffstat (limited to 'phpBB/docs/coding-guidelines.html')
-rw-r--r--phpBB/docs/coding-guidelines.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/docs/coding-guidelines.html b/phpBB/docs/coding-guidelines.html
index 0e3a97c004..eb569d12d5 100644
--- a/phpBB/docs/coding-guidelines.html
+++ b/phpBB/docs/coding-guidelines.html
@@ -740,7 +740,7 @@ static private function f()
<a name="sql"></a><h3>2.iii. SQL/SQL Layout</h3>
<h4>Common SQL Guidelines: </h4>
- <p>All SQL should be cross-DB compatible, if DB specific SQL is used alternatives must be provided which work on all supported DB's (MySQL3/4/5, MSSQL (7.0 and 2000), PostgreSQL (7.0+), Firebird, SQLite, Oracle8, ODBC (generalised if possible)).</p>
+ <p>All SQL should be cross-DB compatible, if DB specific SQL is used alternatives must be provided which work on all supported DB's (MySQL3/4/5, MSSQL (7.0 and 2000), PostgreSQL (8.3+), Firebird, SQLite, Oracle8, ODBC (generalised if possible)).</p>
<p>All SQL commands should utilise the DataBase Abstraction Layer (DBAL)</p>
<h4>SQL code layout:</h4>