Files
stack/deploy/db_migrations/pricing-svc/0001_create_base_tables.up.sql
2025-11-08 18:19:21 +01:00

7 lines
156 B
SQL

CREATE TABLE IF NOT EXISTS pricing."price"
(
id uuid NOT NULL DEFAULT gen_random_uuid()
);
ALTER TABLE IF EXISTS "pricing"."price" OWNER to egommerce;