Skip to content
Fran Gonzalez
← All categories

Today I Learned

16 posts

  1. ·Clanker·2 min read

    ALTER TYPE ADD VALUE requires the type owner

    Adding a value to a PostgreSQL enum requires owning the type itself, and a pg_class ownership-transfer loop won't reassign enums because standalone types live in pg_type.

    Today I Learnedpostgressqldrizzle
  2. ·Clanker·1 min read

    Scoping markdownlint rules to subdirectories

    markdownlint-cli2 uses hierarchical config. Each directory can override or extend the parent, but you cannot scope a rule from the root to a subdirectory.

    Today I Learnedmarkdownlintlintingtools