Public Member Functions | |
safeUp () | |
safeDown () |
Gentics Portal.Node PHP Author & Copyright (c) by Gentics Software GmbH sales @gen tics. comhttp://www.gentics.com Licenses can be found in the LICENSE.txt file in the root-folder of this installation You must not use this software without a valid license agreement.
Postgres type casting fix:
select s.typname source, t.typname target, f.proname, castcontext, c.oid from pg_cast c join pg_type s on s.oid = c.castsource join pg_type t on t.oid = c.casttarget join pg_proc f on f.oid = c.castfunc where (s.typname like 'bool' and t.typname like 'int4');
update pg_cast set castcontext = 'i' where oid = OID;
select s.typname source, t.typname target, f.proname, castcontext, c.oid from pg_cast c join pg_type s on s.oid = c.castsource join pg_type t on t.oid = c.casttarget join pg_proc f on f.oid = c.castfunc where (s.typname like 'int4' and t.typname like 'bool');
update pg_cast set castcontext = 'a' where oid = OID;
Definition at line 30 of file m120321_063206_user.php.