added pricing service migrations
This commit is contained in:
parent
8fba43e14c
commit
59368f3660
@ -0,0 +1 @@
|
||||
DROP TABLE IF EXISTS pricing.price;
|
@ -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...
|
Loading…
Reference in New Issue
Block a user