9 lines
249 B
SQL
9 lines
249 B
SQL
CREATE OR REPLACE VIEW public.vw_bi_os_migration_mapping AS
|
|
SELECT object_type AS source_object_type,
|
|
source_id,
|
|
tryton_model,
|
|
tryton_id,
|
|
recon_key AS reconciliation_key,
|
|
write_date AS import_date
|
|
FROM os_migration_mapping;;
|