DBCoreSchema

export interface DBCoreSchema {
  name: string;
  tables: DBCoreTableSchema[];
}

Schema structure in DBCore.

See also DBCoreTableSchema

Table of Contents