-- SPDX-FileCopyrightText: 2024 Aravinth Manivannan -- -- SPDX-License-Identifier: AGPL-3.0-or-later CREATE TABLE IF NOT EXISTS cqrs_inventory_product_query ( version bigint CHECK (version >= 0) NOT NULL, name TEXT NOT NULL, description TEXT, image TEXT, sku_able BOOLEAN NOT NULL DEFAULT FALSE, product_id UUID NOT NULL UNIQUE, price_minor INTEGER NOT NULL, price_major INTEGER NOT NULL, price_currency TEXT NOT NULL, category_id UUID NOT NULL, deleted BOOLEAN NOT NULL DEFAULT FALSE, UNIQUE(category_id, name), PRIMARY KEY (product_id) );