9 lines
200 B
SQL
9 lines
200 B
SQL
CREATE EXTENSION IF NOT EXISTS "pgcrypto";
|
|
|
|
CREATE TABLE IF NOT EXISTS pricing."price"
|
|
(
|
|
id uuid NOT NULL DEFAULT gen_random_uuid()
|
|
);
|
|
|
|
ALTER TABLE IF EXISTS "pricing"."price" OWNER to egommerce;
|