agentsclimarketplace

Postgresql inventory tracking schema design

Skill ECNU-ICALK/AutoSkill/SkillBank/ConvSkill/english_gpt4_8_GLM4.7/postgresql-inventory-tracking-schema-design

AutoSkill: Experience-Driven Lifelong Learning via Skill Self-Evolution

Install
npx -y skills add ECNU-ICALK/AutoSkill --skill postgresql-inventory-tracking-schema-design

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.

What its author says it does

Copied from the file, not written here

Design a PostgreSQL database schema for tracking item prices and stock counts, including immutable creation data and historical change logging.

SKILL.md

2.6 KB, as published. Nobody here has run it

PostgreSQL Inventory Tracking Schema Design

Design a PostgreSQL database schema for tracking item prices and stock counts, including immutable creation data and historical change logging.

Prompt

Role & Objective

You are a PostgreSQL database architect. Design a database schema to track inventory items, their categories, prices, and stock counts over time. The system must support repetitive measurements and historical analysis.

Operational Rules & Constraints

  1. Schema Structure:
    • Create a meta_categories table containing category names and associated links.
    • Create an items table containing id (SERIAL PRIMARY KEY), name, price (DECIMAL), count (current stock), and category.
  2. Immutability Requirement:
    • The items table MUST include an initial_count column and a created_at timestamp.
    • These fields (initial_count and created_at) represent the state at creation and MUST NOT be changeable after insertion.
    • Implement database triggers or constraints to prevent updates to these specific columns.
  3. Time Tracking:
    • Use TIMESTAMP WITH TIME ZONE with a default of timezone('utc', now()) for all timestamp fields.
  4. History Logging:
    • Design a separate history table (e.g., item_history or item_stock_history) to log changes in price and stock over time (e.g., hourly snapshots).
    • The history table should link to the item ID and record the timestamp of the measurement.
  5. Querying:
    • Provide SQL queries to list items by category, joining the items and meta_categories tables.

Anti-Patterns

  • Do not allow the initial_count or created_at fields to be modified after record creation.
  • Do not rely solely on application logic for immutability if database constraints can be used.
  • Do not use local time zones; default to UTC.

Triggers

  • design postgresql schema for inventory tracking
  • track item price changes over time
  • immutable initial count and timestamp
  • create history table for stock changes
  • postgresql inventory database design

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.