Manus에서 모든 스킬 실행
원클릭으로
원클릭으로
원클릭으로 Manus에서 모든 스킬 실행
시작하기$pwd:
db-schema-change
// Use when adding/modifying database tables or columns in Drizzle ORM schema
$ git log --oneline --stat
stars:264
forks:31
updated:2026년 2월 13일 11:16
SKILL.md
// Use when adding/modifying database tables or columns in Drizzle ORM schema
Use when adding new scraping targets to the crawler
Use when creating new UI components under apps/web/src/components/
Use when needing to visualize database schema, generate ERD diagrams from Drizzle ORM schemas, or understand table relationships
| name | db-schema-change |
| description | Use when adding/modifying database tables or columns in Drizzle ORM schema |
createdAt: text("created_at").notNull() to new tablesupdatedAt: text("updated_at").notNull() to new tablesonDelete for all foreign keys (cascade/set null)packages/db/src/schema/relations.ts if adding relationspnpm --filter @mf-dashboard/db exec drizzle-kit generatearchitecture/database-schema.md with new ERDpackages/db/src/schema/tables.tspackages/db/src/schema/relations.tspackages/db/src/repositories/packages/db/src/types.tsexport const newTable = sqliteTable("new_table", {
id: integer("id").primaryKey({ autoIncrement: true }),
// ... your columns ...
createdAt: text("created_at").notNull(),
updatedAt: text("updated_at").notNull(),
});
foreignKeyColumn: integer("foreign_key_column")
.notNull()
.references(() => parentTable.id, { onDelete: "cascade" }),
export const myTable = sqliteTable(
"my_table",
{
// columns...
},
(table) => [index("my_table_column_idx").on(table.columnName)],
);