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

DatabaseSchema

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

Details of a database schema.

interface DatabaseSchema {
objects?: DatabaseObjects[];
schemaName?: string;
tablesSizeBytes?: bigint;
}

§Properties

§

Optional. Details of a Mysql schema.

§

Optional. List of details of objects by category.

§

Optional. Details of a PostgreSql schema.

§
schemaName?: string
[src]

Required. The name of the schema.

§

Optional. Details of a SqlServer schema.

§
tablesSizeBytes?: bigint
[src]

Optional. The total size of tables in bytes.