Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
在 Square Cloud 上创建一个新数据库。
db info
squarecloud db create --name my-db --memory 1024 --type postgres --version 17 # 创建一个名为 "my-db"、内存为 1GB 的 Postgres 17 数据库。
squarecloud db create --name my-db --memory 1024 --type mongo --version 8 # --type 接受 mongo、mysql、redis 或 postgres。--version 取该引擎的主版本号。
squarecloud db create --name my-db --memory 512 --type redis --version 7 --json # 以 JSON 格式打印创建的数据库,包括密码和连接 URL。
squarecloud db create --help