docs(data-modeling): document view security_barrier + WITH CHECK OPTION (ORM SDK)#187
Merged
Merged
Conversation
Contributor
🤖 Devin AI EngineerI'll be helping with this pull request! Here's what you should know: ✅ I will automatically:
Note: I can only respond to comments from users who have write access to this repository. ⚙️ Control Options:
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Documents the two view options added to the metaschema in constructive-db PR #2416 (PG18 epic constructive-planning#1236) as SDK/ORM API docs in the
constructive-data-modelingskill. No raw SQL is authored — examples usedb.view.create/db.view.update, per the repo's "document the SDK/ORM surface only" rule (generated-SQL behavior is shown as// →comments, which the rule permits).Previously the skill had no view documentation at all; this adds a
Viewssection plus a focused reference.New view options (alongside the existing
securityInvoker):securityBarrierfalseWITH (security_barrier = true)checkOptionnullWITH [LOCAL|CASCADED] CHECK OPTION(null | 'local' | 'cascaded')Changes
constructive-data-modeling/SKILL.md: newViewssection,When to Applybullet, References-table entry, and frontmatter trigger phrases (create a view,security_barrier,WITH CHECK OPTION,check_option).constructive-data-modeling/references/views.md(new): view creation viadb.view.create, the three view options, validcheckOptionvalues, update semantics, and generatedpg_class.reloptionsbehavior.constructive-data-modeling.zip: repackaged to match (per AGENTS.md).Link to Devin session: https://app.devin.ai/sessions/ab8859d00d244aa89bfd11d88f287536
Requested by: @pyramation