Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

FilterTableColumns

import type { FilterTableColumns } from "https://googleapis.deno.dev/v1/datamigration:v1.ts";

Options to configure rule type FilterTableColumns. The rule is used to filter the list of columns to include or exclude from a table. The rule filter field can refer to one entity. The rule scope can be: Table Only one of the two lists can be specified for the rule.

interface FilterTableColumns {
excludeColumns?: string[];
includeColumns?: string[];
}

§Properties

§
excludeColumns?: string[]
[src]

Optional. List of columns to be excluded for a particular table.

§
includeColumns?: string[]
[src]

Optional. List of columns to be included for a particular table.