Merge branch 'master' into test
gitea/salix/test This commit looks good Details

This commit is contained in:
Joan Sanchez 2019-08-02 09:04:40 +02:00
commit a342bb598d
2 changed files with 24 additions and 1 deletions

View File

@ -8,7 +8,7 @@ module.exports = Self => {
{
arg: 'id',
type: 'Number',
description: 'The document id',
description: 'Document id',
http: {source: 'path'}
}
],

View File

@ -0,0 +1,23 @@
ALTER TABLE `vn2008`.`gestdoc`
ADD COLUMN `contentType` VARCHAR(100) NULL AFTER `file`;
CREATE
OR REPLACE ALGORITHM = UNDEFINED
DEFINER = `root`@`%`
SQL SECURITY DEFINER
VIEW `vn`.`dms` AS
SELECT
`g`.`id` AS `id`,
`g`.`gesttip_id` AS `dmsTypeFk`,
`g`.`file` AS `file`,
`g`.`contentType` AS `contentType`,
`g`.`trabajador_id` AS `workerFk`,
`g`.`warehouse_id` AS `warehouseFk`,
`g`.`emp_id` AS `companyFk`,
`g`.`orden` AS `hardCopyNumber`,
`g`.`original` AS `hasFile`,
`g`.`sref` AS `reference`,
`g`.`brief` AS `description`,
`g`.`odbc_date` AS `created`
FROM
`vn2008`.`gestdoc` `g`;