Files
3ybactuk-marketplace-go-ser…/loms/db/migrations/00002_create_stocks.sql
Никита Шубин 77ed9fcf85 [hw-4] add postgres db
2025-06-26 12:08:46 +00:00

10 lines
192 B
SQL

-- +goose Up
CREATE TABLE
stocks (
sku BIGINT PRIMARY KEY,
total_count BIGINT NOT NULL,
reserved BIGINT NOT NULL DEFAULT 0
);
-- +goose Down
DROP TABLE stocks;