Skip to content

Commit

Permalink
Switch column names in database
Browse files Browse the repository at this point in the history
  • Loading branch information
Cyberboss committed Oct 21, 2023
1 parent 186d5d6 commit eaf2a6c
Show file tree
Hide file tree
Showing 15 changed files with 4,692 additions and 28 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,18 +26,18 @@ public abstract class InstancePermissionSet
public InstancePermissionSetRights? InstancePermissionSetRights { get; set; }

/// <summary>
/// The legacy <see cref="Rights.EngineRights"/> of the <see cref="InstancePermissionSet"/>.
/// The <see cref="Rights.EngineRights"/> of the <see cref="InstancePermissionSet"/>.
/// </summary>
[Required]
[Obsolete("Use EngineRights instead")]
[NotMapped]
public EngineRights? ByondRights { get; set; }
public EngineRights? EngineRights { get; set; }

/// <summary>
/// The <see cref="Rights.EngineRights"/> of the <see cref="InstancePermissionSet"/>.
/// The legacy <see cref="Rights.EngineRights"/> of the <see cref="InstancePermissionSet"/>.
/// </summary>
[Required]
public virtual EngineRights? EngineRights { get; set; }
[Obsolete("Use EngineRights instead")]
[NotMapped]
public EngineRights? ByondRights { get; set; }

/// <summary>
/// The <see cref="Rights.DreamDaemonRights"/> of the <see cref="InstancePermissionSet"/>.
Expand Down
Loading

0 comments on commit eaf2a6c

Please sign in to comment.