blob: 1617c8ff28866f3a5115c7ae88e5e489cba574f9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
using System;
using System.Collections.Generic;
using System.Text;
namespace Tango.Synchronization.Conversion
{
public class TableSchema
{
public string TableName;
public string TableSchemaName;
public List<ColumnSchema> Columns;
public List<string> PrimaryKey;
public List<ForeignKeySchema> ForeignKeys;
public List<IndexSchema> Indexes;
public bool CopyData { get; set; }
}
}
|