Skip to main content
Version: 6.2

SchemaComparator

Compares two Schemas and return an instance of SchemaDifference.

Index

Constructors

constructor

Methods

compare

  • Returns a SchemaDifference object containing the differences between the schemas fromSchema and toSchema.

    The returned differences are returned in such a way that they contain the operations to change the schema stored in fromSchema to the schema that is stored in toSchema.


    Parameters

    • fromSchema: DatabaseSchema
    • toSchema: DatabaseSchema
    • optionalinverseDiff: SchemaDifference

    Returns SchemaDifference

diffColumn

  • diffColumn(fromColumn: Column, toColumn: Column, tableName?: string): Set<string>
  • Returns the difference between the columns If there are differences this method returns field2, otherwise the boolean false.


    Parameters

    Returns Set<string>

diffComment

  • diffComment(comment1?: string, comment2?: string): boolean
  • Parameters

    • optionalcomment1: string
    • optionalcomment2: string

    Returns boolean

diffEnumItems

  • diffEnumItems(items1?: string[], items2?: string[]): boolean
  • Parameters

    • items1: string[] = []
    • items2: string[] = []

    Returns boolean

diffExpression

  • diffExpression(expr1: string, expr2: string): boolean
  • Parameters

    • expr1: string
    • expr2: string

    Returns boolean

diffForeignKey

diffIndex

  • Finds the difference between the indexes index1 and index2. Compares index1 with index2 and returns index2 if there are any differences or false in case there are no differences.


    Parameters

    Returns boolean

diffTable

  • Returns the difference between the tables fromTable and toTable. If there are no differences this method returns the boolean false.


    Parameters

    • fromTable: DatabaseTable
    • toTable: DatabaseTable
    • optionalinverseTableDiff: TableDifference

    Returns false | TableDifference

hasSameDefaultValue

isIndexFulfilledBy

  • Checks if the other index already fulfills all the indexing and constraint needs of the current one.


    Parameters

    Returns boolean

parseJsonDefault

  • parseJsonDefault(defaultValue?: null | string): null | string | Dictionary
  • Parameters

    • optionaldefaultValue: null | string

    Returns null | string | Dictionary