2024-07-23 19:18:09 +05:30
|
|
|
-- SPDX-FileCopyrightText: 2024 Aravinth Manivannan <realaravinth@batsense.net>
|
|
|
|
--
|
|
|
|
-- SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
|
|
|
|
CREATE TABLE IF NOT EXISTS cqrs_ordering_order_query
|
|
|
|
(
|
|
|
|
version bigint CHECK (version >= 0) NOT NULL,
|
|
|
|
|
|
|
|
created_time timestamp with time zone DEFAULT (CURRENT_TIMESTAMP) NOT NULL,
|
|
|
|
order_id UUID NOT NULL UNIQUE,
|
2024-09-24 17:26:28 +05:30
|
|
|
store_id UUID NOT NULL,
|
2024-07-23 19:18:09 +05:30
|
|
|
|
2024-09-24 17:26:28 +05:30
|
|
|
customer_name TEXT,
|
2024-07-23 19:18:09 +05:30
|
|
|
|
|
|
|
deleted BOOLEAN NOT NULL DEFAULT FALSE,
|
|
|
|
|
|
|
|
PRIMARY KEY (order_id)
|
|
|
|
);
|