9 lines
184 B
MySQL
9 lines
184 B
MySQL
|
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...
|