15 lines
445 B
VB.net
15 lines
445 B
VB.net
|
|
Namespace Database.Base
|
|
''' <summary>
|
|
''' Contains the schema of a single DB column.
|
|
''' </summary>
|
|
Public Class ColumnSchema
|
|
Public ColumnName As String
|
|
Public ColumnType As String
|
|
Public Length As Integer
|
|
Public IsNullable As Boolean
|
|
Public DefaultValue As String
|
|
Public IsIdentity As Boolean
|
|
Public IsCaseSensitivity As Boolean? = Nothing
|
|
End Class
|
|
End NameSpace |