MssqlColumnSchema constructor
const
MssqlColumnSchema({
- required int ordinal,
- required String name,
- required String sqlTypeName,
- required MssqlType type,
- required bool nullable,
- required bool isIdentity,
- required bool isComputed,
- required bool isRowVersion,
- required bool hasDefault,
- required int maxLength,
- required int precision,
- required int scale,
- String? collation,
- String? defaultSql,
- String? computedSql,
- bool isPersistedComputed = false,
Implementation
const MssqlColumnSchema({
required this.ordinal,
required this.name,
required this.sqlTypeName,
required this.type,
required this.nullable,
required this.isIdentity,
required this.isComputed,
required this.isRowVersion,
required this.hasDefault,
required this.maxLength,
required this.precision,
required this.scale,
this.collation,
this.defaultSql,
this.computedSql,
this.isPersistedComputed = false,
});