2012-04-28 Junichi Satoh <junichi@rworks.jp>
* pandoradb.postgreSQL.sql, extras/pandoradb_migrate_4.0.x_to_4.1.postgreSQL.sql: Fixed database creation failure with before 9.1 version of PostgreSQL. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6220 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
492e93da57
commit
a7158cfdc2
|
@ -1,3 +1,9 @@
|
||||||
|
2012-04-28 Junichi Satoh <junichi@rworks.jp>
|
||||||
|
|
||||||
|
* pandoradb.postgreSQL.sql,
|
||||||
|
extras/pandoradb_migrate_4.0.x_to_4.1.postgreSQL.sql: Fixed database
|
||||||
|
creation failure with before 9.1 version of PostgreSQL.
|
||||||
|
|
||||||
2012-04-27 Juan Manuel Ramon <juanmanuel.ramon@artica.es>
|
2012-04-27 Juan Manuel Ramon <juanmanuel.ramon@artica.es>
|
||||||
|
|
||||||
* images/enterprise_version.png
|
* images/enterprise_version.png
|
||||||
|
|
|
@ -196,7 +196,7 @@ ALTER TABLE "talert_compound" ADD COLUMN "special_day" SMALLINT default 0;
|
||||||
-- Table `ttimezone`
|
-- Table `ttimezone`
|
||||||
-- -----------------------------------------------------
|
-- -----------------------------------------------------
|
||||||
|
|
||||||
CREATE TABLE IF NOT EXISTS "ttimezone" (
|
CREATE TABLE "ttimezone" (
|
||||||
"id_tz" INTEGER NOT NULL PRIMARY KEY,
|
"id_tz" INTEGER NOT NULL PRIMARY KEY,
|
||||||
"zone" varchar(60) NOT NULL,
|
"zone" varchar(60) NOT NULL,
|
||||||
"timezone" varchar(60) NOT NULL
|
"timezone" varchar(60) NOT NULL
|
||||||
|
|
|
@ -1286,7 +1286,7 @@ CREATE TABLE "tevent_filter" (
|
||||||
-- Table `ttimezone`
|
-- Table `ttimezone`
|
||||||
-- -----------------------------------------------------
|
-- -----------------------------------------------------
|
||||||
|
|
||||||
CREATE TABLE IF NOT EXISTS "ttimezone" (
|
CREATE TABLE "ttimezone" (
|
||||||
"id_tz" INTEGER NOT NULL PRIMARY KEY,
|
"id_tz" INTEGER NOT NULL PRIMARY KEY,
|
||||||
"zone" varchar(60) NOT NULL,
|
"zone" varchar(60) NOT NULL,
|
||||||
"timezone" varchar(60) NOT NULL
|
"timezone" varchar(60) NOT NULL
|
||||||
|
|
Loading…
Reference in New Issue