mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-12 08:07:10 -07:00
11 lines
132 B
C#
11 lines
132 B
C#
namespace Migrator.Framework
|
|
{
|
|
public enum ForeignKeyConstraint
|
|
{
|
|
Cascade,
|
|
SetNull,
|
|
NoAction,
|
|
Restrict,
|
|
SetDefault
|
|
}
|
|
}
|