diff --git a/db/proto/db.proto b/db/proto/db.proto index eb2c7e4..8f79429 100644 --- a/db/proto/db.proto +++ b/db/proto/db.proto @@ -103,8 +103,11 @@ message CountResponse { int32 count = 1; } +// Rename a table message RenameTableRequest { + // current table name string from = 1; + // new table name string to = 2; } @@ -112,10 +115,12 @@ message RenameTableResponse { } +// List tables in the DB message ListTablesRequest { } message ListTablesResponse { + // list of tables repeated string tables = 1; -} \ No newline at end of file +}