Realizar em produção...Realizar em produção...
- Criar tabela no banco de dados:
CREATE TABLE public.phpgw_cal_invite ( invite_id serial NOT NULL, hash character(150) NOT NULL, contents text NOT NULL, owner integer NOT NULL, created_at timestamp without time zone NOT NULL DEFAULT now(), imported_at timestamp without time zone, CONSTRAINT phpgw_cal_invite_pkey PRIMARY KEY (invite_id) )
- Criar arquivo /api/config/DB.php (substituir por valores reais do ambiente)
<?php defined("DBDRIVER")or define('DBDRIVER','pgsql'); defined("DBHOST")or define('DBHOST','database.expresso'); defined("DBNAME")or define('DBNAME','expresso'); defined("DBUSER")or define('DBUSER','postgres'); defined("DBPASS")or define('DBPASS','***'); defined("DBPORT")or define('DBPORT','5433');
- Atualizar tabela do módulo Workflow: (banco do workflow)
alter table egw_wf_user_cache alter column uid type varchar(70); alter table egw_wf_user_cache alter column cn type varchar(200); alter table egw_wf_user_cache alter column givenname type varchar(100); alter table egw_wf_user_cache alter column sn type varchar(100); alter table egw_wf_user_cache alter column dn type varchar(500);