Skip to content

Commit 81f1713

Browse files
authored
Merge pull request #1409 from ItzNotABug/patch-1
Update query for migrations
2 parents fb71d18 + 94f2d82 commit 81f1713

File tree

1 file changed

+2
-1
lines changed
  • src/routes/(console)/project-[project]/settings/migrations

1 file changed

+2
-1
lines changed

src/routes/(console)/project-[project]/settings/migrations/+page.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ export async function load({ depends }) {
88
try {
99
const { migrations } = await sdk.forProject.migrations.list([
1010
// hides backups/restorations from migrations page.
11-
Query.equal('source', ['Firebase', 'NHost', 'Supabase'])
11+
Query.equal('source', ['Appwrite', 'Firebase', 'NHost', 'Supabase']),
12+
Query.equal('destination', ['Appwrite', 'Firebase', 'NHost', 'Supabase'])
1213
]);
1314

1415
return {

0 commit comments

Comments
 (0)