You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
1.1 KiB
29 lines
1.1 KiB
namespace OpenDBDiff.SqlServer.Schema.Generates.Util
|
|
{
|
|
internal class Constants
|
|
{
|
|
public const int READING_RULES = 0;
|
|
public const int READING_TABLES = 1;
|
|
public const int READING_CONSTRAINTS = 2;
|
|
public const int READING_UDT = 3;
|
|
public const int READING_XMLSCHEMAS = 4;
|
|
public const int READING_SCHEMAS = 5;
|
|
public const int READING_USER = 6;
|
|
public const int READING_PARTITIONFUNCTION = 7;
|
|
public const int READING_PARTITIONSCHEME = 8;
|
|
public const int READING_FILEGROUPS = 9;
|
|
public const int READING_DLLTRIGGERS = 10;
|
|
public const int READING_SYNONYMS = 11;
|
|
public const int READING_ASSEMBLIES = 12;
|
|
public const int READING_PROCEDURES = 13;
|
|
public const int READING_VIEWS = 14;
|
|
public const int READING_FUNCTIONS = 15;
|
|
public const int READING_INDEXES = 16;
|
|
public const int READING_TRIGGERS = 17;
|
|
public const int READING_TEXTOBJECTS = 18;
|
|
public const int READING_EXTENDED_PROPERTIES = 19;
|
|
public const int READING_MAX = 20;
|
|
|
|
}
|
|
}
|