Skip to content

Commit

Permalink
add rpc command
Browse files Browse the repository at this point in the history
  • Loading branch information
Weakky committed Jul 25, 2024
1 parent c7a13be commit 0a2fc83
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions schema-engine/core/src/rpc.rs
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ async fn run_command(
EVALUATE_DATA_LOSS => render(executor.evaluate_data_loss(params.parse()?).await),
GET_DATABASE_VERSION => render(executor.version(params.parse()?).await),
INTROSPECT => render(executor.introspect(params.parse()?).await),
INTROSPECT_SQL => render(executor.introspect_sql(params.parse()?).await),
LIST_MIGRATION_DIRECTORIES => render(executor.list_migration_directories(params.parse()?).await),
MARK_MIGRATION_APPLIED => render(executor.mark_migration_applied(params.parse()?).await),
MARK_MIGRATION_ROLLED_BACK => render(executor.mark_migration_rolled_back(params.parse()?).await),
Expand Down

0 comments on commit 0a2fc83

Please sign in to comment.