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.mdsource content
Read and follow the database conventions documented in the resources before making changes to database schemas or queries.
Resources
— NOT NULL field conventionsnot-null-fields.md
— Table naming conventions (singular vs plural)table-naming-singular-plural-convention.md
— Use TEXT over VARCHAR/CHAR conventiontext-over-varchar-char-convention.md