ワンクリックで
relational-db-general
Principles for relational database design, including normalization, naming conventions, keys, and ACID compliance.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Principles for relational database design, including normalization, naming conventions, keys, and ACID compliance.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
Bootstraps a new project with standard folder structure, git init, basic files, planning doc skeletons, and initial memory.json. Triggers on new project creation keywords. CRITICAL for first-time setup.
Configuration for Virtual Hosts, .htaccess, and PHP-FPM in LAMP stacks.
Principles for REST, GraphQL, versioning, and API authentication.
Optimization and usage of SVGs, fonts, and static assets.
Patterns for maintaining or migrating Bootstrap 3/4/5 projects.
Caddyfile configuration, auto-HTTPS, and FastCGI.
SOC 職業分類に基づく
| name | relational-db-general |
| description | Principles for relational database design, including normalization, naming conventions, keys, and ACID compliance. |
This skill provides core guidelines for designing and interacting with relational databases (MySQL, PostgreSQL, etc.).
users, order_items).is_active, created_at).id (or product_id if strictly required by convention, but id preferred for simplicity).singular_table_name_id (e.g., user_id references users.id).idx_table_columns; Unique: uniq_table_columns.ON DELETE RESTRICT or CASCADE).NOT NULL unless optionality is strictly required.BEGIN ... COMMIT).WHERE, JOIN, and ORDER BY.SELECT *.TINYINT for booleans, DECIMAL for currency).