File tree Expand file tree Collapse file tree 1 file changed +3
-7
lines changed
Expand file tree Collapse file tree 1 file changed +3
-7
lines changed Original file line number Diff line number Diff line change @@ -36,25 +36,21 @@ const migrate = new LaunchQLMigrate({
3636const deployResult = await migrate .deploy ({
3737 project: ' myproject' ,
3838 targetDatabase: ' myapp' ,
39- planPath: ' ./launchql.plan' ,
40- deployPath: ' ./deploy' ,
41- verifyPath: ' ./verify'
39+ planPath: ' ./launchql.plan'
4240});
4341
4442// Revert changes
4543const revertResult = await migrate .revert ({
4644 project: ' myproject' ,
4745 targetDatabase: ' myapp' ,
48- planPath: ' ./launchql.plan' ,
49- revertPath: ' ./revert'
46+ planPath: ' ./launchql.plan'
5047});
5148
5249// Verify deployment
5350const verifyResult = await migrate .verify ({
5451 project: ' myproject' ,
5552 targetDatabase: ' myapp' ,
56- planPath: ' ./launchql.plan' ,
57- verifyPath: ' ./verify'
53+ planPath: ' ./launchql.plan'
5854});
5955
6056// Check status
You can’t perform that action at this time.
0 commit comments