namespace Migrator.Framework
{
	public enum ForeignKeyConstraint
	{
		Cascade,
		SetNull,
		NoAction,
		Restrict,
		SetDefault
	}
}