summaryrefslogtreecommitdiff
path: root/Acl.cs
diff options
context:
space:
mode:
authorJake Mannens <jake@asger.xyz>2023-09-20 15:53:05 +1000
committerJake Mannens <jake@asger.xyz>2023-09-25 16:02:18 +1000
commit39eead0052215d7be4f49906e987fef7fb0c700b (patch)
treea7381d06ee6cab9d4ce72d1e2a7121bc93193c6d /Acl.cs
parentfbaa4e43709a96774ebe42b7ec5908c1c0f310d7 (diff)
Fixed migration and began adding ACL edit dialog
Diffstat (limited to 'Acl.cs')
-rw-r--r--Acl.cs1
1 files changed, 1 insertions, 0 deletions
diff --git a/Acl.cs b/Acl.cs
index 72d0bf2..297144e 100644
--- a/Acl.cs
+++ b/Acl.cs
@@ -25,6 +25,7 @@ public class Acl<T> : Acl where T : Enum {
public class AclRule : HBObject {
public HBPrincipal Principal { get; set; }
public AclRuleAction Action { get; set; }
+ [Column(TypeName = "bigint")]
public ulong Permissions { get; set; }
}