database-design-reference

-- BAD: Multiple phone numbers in one column

Content Preview
# database-designer reference

## Database Design Principles

### Normalization Forms

#### First Normal Form (1NF)
- **Atomic Values**: Each column contains indivisible values
- **Unique Column Names**: No duplicate column names within a table
- **Uniform Data Types**: Each column contains the same type of data
- **Row Uniqueness**: No duplicate rows in the table

**Example Violation:**
```sql
-- BAD: Multiple phone numbers in one column
CREATE TABLE contacts (
    id INT PRIMARY KEY,
    name 
How to Use

Recommended: Install to project (local)

mkdir -p .claude/skills
curl -o .claude/skills/database-design-reference.md \
  https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/engineering/database-designer/references/database-design-reference.md

Skill is scoped to this project only. Add .claude/skills/ to your .gitignoreif you don't want to commit it.

Alternative: Clone full repo

git clone https://github.com/alirezarezvani/claude-skills

Then reference at engineering/database-designer/references/database-design-reference.md

Related Skills