Skip to content

Commit 7c7f69f

Browse files
committed
Update readme
1 parent 0bfce4d commit 7c7f69f

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

tools/sql/README.md

+6-3
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@ SQL_USER=$USERNAME SQL_PASSWORD=$PASSWD make install-schema-mysql
1717
- For other SQL database, you can add it easily as we do for MySQL/Postgres following our code in sql-extensions
1818

1919
### Do one time database creation and schema setup for a new cluster
20-
- All command below are taking MySQL as example. For postgres, simply use with "--plugin postgres12"
20+
21+
- All command below are taking MySQL as example. For postgres, simply use with "--plugin postgres12" and "--schema-name postgresql/v12/temporal" & "--schema-name postgresql/v12/visibility"
2122

2223
```
2324
./temporal-sql-tool --ep $SQL_HOST -p $port --db temporal --plugin mysql8 create
@@ -26,10 +27,12 @@ SQL_USER=$USERNAME SQL_PASSWORD=$PASSWD make install-schema-mysql
2627

2728
```
2829
./temporal-sql-tool --ep $SQL_HOST -p $port --plugin mysql8 --db temporal setup-schema -v 0.0 -- this sets up just the schema version tables with initial version of 0.0
29-
./temporal-sql-tool --ep $SQL_HOST -p $port --plugin mysql8 --db temporal update-schema -d ./schema/mysql/v8/temporal/versioned -- upgrades your schema to the latest version
30+
./temporal-sql-tool --ep $SQL_HOST -p $port --plugin mysql8 --db temporal update-schema --schema-name mysql/v8/temporal -- upgrades your schema with the embedded schema
31+
./temporal-sql-tool --ep $SQL_HOST -p $port --plugin mysql8 --db temporal update-schema -d ./schema/mysql/v8/temporal/versioned -- Or upgrades your schema by providing your schema
3032
3133
./temporal-sql-tool --ep $SQL_HOST -p $port --plugin mysql8 --db temporal_visibility setup-schema -v 0.0 -- this sets up just the schema version tables with initial version of 0.0 for visibility
32-
./temporal-sql-tool --ep $SQL_HOST -p $port --plugin mysql8 --db temporal_visibility update-schema -d ./schema/mysql/v8/visibility/versioned -- upgrades your schema to the latest version for visibility
34+
./temporal-sql-tool --ep $SQL_HOST -p $port --plugin mysql8 --db temporal update-schema --schema-name mysql/v8/visibility -- upgrades your schema with the embedded schema for visibility
35+
./temporal-sql-tool --ep $SQL_HOST -p $port --plugin mysql8 --db temporal_visibility update-schema -d ./schema/mysql/v8/visibility/versioned -- Or upgrades your schema by providing your schema for visibility
3336
```
3437

3538
### Update schema as part of a release

0 commit comments

Comments
 (0)