MssqlColumnSchema constructor

const MssqlColumnSchema({
  1. required int ordinal,
  2. required String name,
  3. required String sqlTypeName,
  4. required MssqlType type,
  5. required bool nullable,
  6. required bool isIdentity,
  7. required bool isComputed,
  8. required bool isRowVersion,
  9. required bool hasDefault,
  10. required int maxLength,
  11. required int precision,
  12. required int scale,
  13. String? collation,
  14. String? defaultSql,
  15. String? computedSql,
  16. 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,
});