Skip to content

Commit 8e8e396

Browse files
authored
Merge pull request #1172 from appwrite/fix-pull-tables
fix: pull tables in cli
2 parents 662c7a5 + cc33062 commit 8e8e396

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

templates/cli/lib/commands/pull.js.twig

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ const { projectsGet } = require("./projects");
99
const { functionsList, functionsGetDeploymentDownload, functionsListDeployments } = require("./functions");
1010
const { sitesList, sitesGetDeploymentDownload, sitesListDeployments } = require("./sites");
1111
const { databasesGet, databasesListCollections, databasesList } = require("./databases");
12-
const { tablesDBList, tablesDBget, tablesDBListTables } = require("./tables-db");
12+
const { tablesDBList, tablesDBGet, tablesDBListTables } = require("./tables-db");
1313
const { storageListBuckets } = require("./storage");
1414
const { localConfig } = require("../config");
1515
const { paginate } = require("../paginate");
@@ -364,7 +364,7 @@ const pullTable = async () => {
364364
}
365365

366366
for (const databaseId of databases) {
367-
const database = await tablesDBget({
367+
const database = await tablesDBGet({
368368
databaseId,
369369
parseOutput: false
370370
});

0 commit comments

Comments
 (0)