1 /*
2 # PostgreSQL Database Modeler (pgModeler)
3 #
4 # Copyright 2006-2020 - Raphael Araújo e Silva <raphael@pgmodeler.io>
5 #
6 # This program is free software: you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation version 3.
9 #
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 # GNU General Public License for more details.
14 #
15 # The complete text of GPLv3 is at LICENSE file on source code root directory.
16 # Also, you can get the complete GNU General Public License at <http://www.gnu.org/licenses/>
17 */
18 
19 #include "pgsqlversions.h"
20 
21 namespace PgSqlVersions {
22 	const QString
23 	PgSqlVersion90=QString("9.0"),
24 	PgSqlVersion91=QString("9.1"),
25 	PgSqlVersion92=QString("9.2"),
26 	PgSqlVersion93=QString("9.3"),
27 	PgSqlVersion94=QString("9.4"),
28 	PgSqlVersion95=QString("9.5"),
29 	PgSqlVersion96=QString("9.6"),
30 	PgSqlVersion100=QString("10.0"),
31 	PgSqlVersion110=QString("11.0"),
32 	PgSqlVersion120=QString("12.0"),
33 	DefaulVersion=PgSqlVersion120;
34 
35 	const QStringList
36 	AllVersions={
37 		PgSqlVersion120, PgSqlVersion110,
38 		PgSqlVersion100, PgSqlVersion96,
39 		PgSqlVersion95, PgSqlVersion94,
40 		PgSqlVersion93, PgSqlVersion92,
41 		PgSqlVersion91, PgSqlVersion90 };
42 }
43