blob: ec4b936696349d3d139b905fb4effacf2ece055b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
using System;
using System.Collections.Generic;
using System.Text;
namespace Tango.Synchronization.Conversion
{
/// <summary>
/// Contains the schema of a single DB column.
/// </summary>
public class ColumnSchema
{
public string ColumnName;
public string ColumnType;
public int Length;
public bool IsNullable;
public string DefaultValue;
public bool IsIdentity;
public bool? IsCaseSensitivite = null;
}
}
|