Skip to content

Commit 2e389a1

Browse files
committed
readme
1 parent ae7fb45 commit 2e389a1

File tree

1 file changed

+3
-7
lines changed

1 file changed

+3
-7
lines changed

packages/migrate/README.md

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -36,25 +36,21 @@ const migrate = new LaunchQLMigrate({
3636
const 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
4543
const 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
5350
const 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

0 commit comments

Comments
 (0)