Transfer policy tag from the source table to new table.

What I am trying to do

Given we have a source table with this schema.yml

version: 2

models:
- name: source_table
  columns:
    - name: field_1
      policy_tags:
        - policy_tag_1

we use this source as reference in another table

select field_1
from {{ref('source_table')}}

Is it possible to transfer the policy tag to columns as well ? Without having to explicitly mention it in schema.yml for the new model ?