You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Remove obsolete config property
- Allow either DatabaseURL or SystemDBPool to be configured (tests in
`dbos_test.go` already cover this)
- add `--schema `to the CLI readme
By default, DBOS creates its system tables in the `dbos` schema. You can specify a custom schema name using the `--schema` global flag.
43
+
44
+
Example:
45
+
```bash
46
+
# Use a custom schema for all DBOS system tables
47
+
dbos migrate --schema myapp_schema
48
+
49
+
# All workflow commands will use the specified schema
50
+
dbos workflow list --schema myapp_schema
51
+
```
52
+
40
53
### Configuration File
41
54
42
55
The CLI uses a `dbos-config.yaml` file for configuration. By default, it looks for this file in the current directory. You can specify a different config file using the `--config` flag.
@@ -60,6 +73,7 @@ These options are available for all commands:
60
73
61
74
- `-D, --db-url <url>` - Your DBOS system database URL
0 commit comments