added pricing service migrations

This commit is contained in:
Piotr Biernat 2023-06-13 21:03:44 +02:00
parent 8fba43e14c
commit 59368f3660
2 changed files with 10 additions and 0 deletions

View File

@ -0,0 +1 @@
DROP TABLE IF EXISTS pricing.price;

View File

@ -0,0 +1,9 @@
CREATE TABLE IF NOT EXISTS pricing."price"
(
id uuid NOT NULL DEFAULT gen_random_uuid()
);
ALTER TABLE IF EXISTS "pricing"."price"
OWNER to postgres;
-- TODO ^^ PRIVILEGES...