Agentic_programming-course database

Database conventions and patterns. Use when working on database schemas, migrations, or data modeling.

install
source · Clone the upstream repo
git clone https://github.com/CodelyTV/agentic_programming-course
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/CodelyTV/agentic_programming-course "$T" && mkdir -p ~/.claude/skills && cp -r "$T/06-evolution/2-mcp_skills_subagents_documentation/2-skills/.agents/skills/database" ~/.claude/skills/codelytv-agentic-programming-course-database && rm -rf "$T"
manifest: 06-evolution/2-mcp_skills_subagents_documentation/2-skills/.agents/skills/database/SKILL.md
source content

Read and follow the database conventions documented in the resources before making changes to database schemas or queries.

Resources

  • not-null-fields.md
    — NOT NULL field conventions
  • table-naming-singular-plural-convention.md
    — Table naming conventions (singular vs plural)
  • text-over-varchar-char-convention.md
    — Use TEXT over VARCHAR/CHAR convention