Skip to content

Commit

Permalink
feat: add deferred to contraints
Browse files Browse the repository at this point in the history
  • Loading branch information
ozum committed May 29, 2023
1 parent 046d3e6 commit 42d21fd
Show file tree
Hide file tree
Showing 32 changed files with 18,295 additions and 32,157 deletions.
2 changes: 1 addition & 1 deletion module-files/scripts/tsmod.js
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ async function md({ out, singleFile = false }) {

const options = [
"--plugin",
"typedoc-plugin-example-tag,typedoc-plugin-markdown,typedoc-plugin-param-names",
"typedoc-plugin-markdown",
"--excludeExternals",
"--excludePrivate",
"--excludeProtected",
Expand Down
2 changes: 2 additions & 0 deletions module-files/sql/9/constraint.sql
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ SELECT
c.confupdtype AS "onUpdate",
c.confdeltype AS "onDelete",
c.confmatchtype AS "matchType",
c.condeferrable AS "isDeferrable",
c.condeferred AS "isDeferred",
pg_get_constraintdef(c.oid) AS "checkConstraintExpression",
pg_catalog.obj_description(c.oid, 'pg_constraint') AS "comment"
FROM
Expand Down

This file was deleted.

Loading

0 comments on commit 42d21fd

Please sign in to comment.