EnableForceRlsOperation

Classes > Nimblesite.DataProvider.Migration.Core > EnableForceRlsOperation

Set FORCE ROW LEVEL SECURITY on a table so RLS applies to the table owner too. Postgres-only. Implements GitHub issue #37.

public sealed record EnableForceRlsOperation : SchemaOperation, IEquatable<SchemaOperation>, IEquatable<EnableForceRlsOperation>

Constructors

EnableForceRlsOperation

public EnableForceRlsOperation(string Schema, string TableName)

Set FORCE ROW LEVEL SECURITY on a table so RLS applies to the table owner too. Postgres-only. Implements GitHub issue #37.

Parameter Type Description
Schema String
TableName String

Properties

Schema

public string Schema { get; init; }

TableName

public string TableName { get; init; }