d1-05-entity-migration

Installation
SKILL.md

Day 1 · Step 5 — Entity + migration (no redeploy)

Before starting: Ask for:

  1. Entity name (PascalCase, e.g., Product, Order, User) — REQUIRED
  2. Columns (format: ColumnName:Type, comma-separated, e.g., Name:string, Price:decimal, Stock:int) — REQUIRED
  3. Nullable columns (optional, default: all non-string/Id are non-nullable) — OPTIONAL

Use exactly as specified. Do not suggest, add, or modify columns.

up-api/Entities/<Entity>.cs:

public class <Entity>
{
    public int Id { get; set; }
    // one property per given column, e.g.:
    // public string Name { get; set; } = string.Empty;
    // public decimal Price { get; set; }
}
Installs
46
First Seen
Aug 7, 2026
d1-05-entity-migration — softinter-chiangrai/up-ai-skill-training