Enum PostgresGenerationType
Default value generation strategy (Identity) types. The clauses ALWAYS and BY DEFAULT determine how the sequence value is given precedence over a user-specified value in an INSERT statement.
Namespace: FluentMigrator
Assembly: FluentMigrator.Extensions.Postgres.dll
Syntax
public enum PostgresGenerationType
Fields
Name | Description |
---|---|
Always | A user-specified value is only accepted if the INSERT statement specifies OVERRIDING SYSTEM VALUE. |
ByDefault | The user-specified value takes precedence. |