2024-07-22 09:52:42 +00:00
|
|
|
CREATE OR REPLACE DEFINER=`vn-admin`@`localhost`
|
2024-01-15 11:31:03 +00:00
|
|
|
SQL SECURITY DEFINER
|
|
|
|
VIEW `vn2008`.`plantpassport`
|
|
|
|
AS SELECT `pp`.`producerFk` AS `producer_id`,
|
|
|
|
`pp`.`plantpassportAuthorityFk` AS `plantpassport_authority_id`,
|
|
|
|
`pp`.`number` AS `number`,
|
|
|
|
`pp`.`isRequested` AS `isRequested`
|
|
|
|
FROM `vn`.`plantpassport` `pp`
|