mirror of
https://github.com/3ybactuk/marketplace-go-service-project.git
synced 2025-10-30 05:53:45 +03:00
10 lines
192 B
SQL
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; |