pg-diff-api
Version:
PostgreSQL migration strategy for NodeJS
23 lines (21 loc) • 714 B
JavaScript
class DatabaseObjects {
constructor() {
/** @type {Object} The definition of schemas*/
this.schemas = null;
/** @type {Object} The definition of tables*/
this.tables = null;
/** @type {Object} The definition of views*/
this.views = null;
/** @type {Object} The definition of materialized views*/
this.materializedViews = null;
/** @type {Object} The definition of functions*/
this.functions = null;
/** @type {Object} The definition of aggregates*/
this.aggregates = null;
/** @type {Object} The definition of sequences*/
this.sequences = null;
/** @type {Object} The definition of extensions*/
this.extensions = null;
}
}
module.exports = DatabaseObjects;