一键导入
database-schema-design
Design robust database schemas using tables, relationships, and migrations. Use for backend and data-driven applications.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Design robust database schemas using tables, relationships, and migrations. Use for backend and data-driven applications.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Secure authentication using Better Auth on Next.js frontend and JWT verification in FastAPI backend with shared secret.
Generate backend routes, handle HTTP requests/responses, and connect to databases. Use for API and server-side development.
Debug all issues, errors, and bugs related to authentication, frontend, and backend. Use to troubleshoot and fix web applications efficiently.
Build modern landing page hero sections with animations. Use for homepage designs.
Create trendy glassmorphism buttons. Use when user wants modern button designs.
Build modern, accessible card components in Next.js with Tailwind CSS, including shadow effects, hover animations, responsive grids, and optimized images using next/image. Use when creating card layouts, product grids, content galleries, or any UI requiring card-based designs in Next.js applications.
| name | database-schema-design |
| description | Design robust database schemas using tables, relationships, and migrations. Use for backend and data-driven applications. |
Schema Planning
Table Creation
Migrations
-- users table
CREATE TABLE users (
id SERIAL PRIMARY KEY,
email VARCHAR(255) UNIQUE NOT NULL,
password_hash TEXT NOT NULL,
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP
);
-- posts table
CREATE TABLE posts (
id SERIAL PRIMARY KEY,
user_id INTEGER REFERENCES users(id),
title VARCHAR(255) NOT NULL,
content TEXT,
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP
);