Files
trading_assistant/trading_assistant_api/deploy/postgres/init.sql
2026-02-06 15:51:22 +08:00

5 lines
190 B
SQL

-- PostgresSQL全局初始化脚本
-- 所有业务公共建库/建表语句写在这里,单独业务表建议在各自业务中处理
CREATE DATABASE IF NOT EXISTS monorepo;
\c monorepo;