MssqlDifferenceKind enum

What kind of schema change was found.

Inheritance
Available extensions

Values

tableMissing → const MssqlDifferenceKind
tableUngenerated → const MssqlDifferenceKind

A table the generated code does not cover at all.

schemaFingerprintChanged → const MssqlDifferenceKind

The generated code was built from a different version of the table.

Reported by tools that hold the generated fingerprint but not the schema it was generated from, and so can say that something changed without saying what.

columnMissing → const MssqlDifferenceKind
columnAdded → const MssqlDifferenceKind
typeChanged → const MssqlDifferenceKind
nullabilityChanged → const MssqlDifferenceKind
sizeChanged → const MssqlDifferenceKind
primaryKeyChanged → const MssqlDifferenceKind
identityChanged → const MssqlDifferenceKind
triggerAdded → const MssqlDifferenceKind
triggerRemoved → const MssqlDifferenceKind
collationChanged → const MssqlDifferenceKind

A column's collation moved, which changes what equality means for it.

defaultChanged → const MssqlDifferenceKind

A default constraint appeared, vanished or changed its expression.

uniqueKeyChanged → const MssqlDifferenceKind

A unique index or constraint appeared, vanished or changed.

Unique keys determine relation cardinality and whether a getOrCreateBy… operation is race-safe.

foreignKeyChanged → const MssqlDifferenceKind

A foreign key appeared, vanished or moved.

computedChanged → const MssqlDifferenceKind

A computed column's expression changed.

Properties

hashCode int
The hash code for this object.
no setterinherited
index int
A numeric identifier for the enumerated value.
no setterinherited
name String

Available on Enum, provided by the EnumName extension

The name of the enum value.
no setter
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Constants

values → const List<MssqlDifferenceKind>
A constant List of the values in this enum, in order of their declaration.