using System;
using System.Collections.Generic;
using System.Text;
namespace umbraco.DataLayer.Utility.Table
{
///
/// Properties for a table field.
///
[Flags]
public enum FieldProperties
{
///
/// No special properties.
///
None = 0x00,
///
/// The field cannot be null.
///
NotNull = 0x01 << 1,
///
/// The field is an identity field.
///
Identity = 0x01 << 2 | NotNull,
}
}