mirror of
https://github.com/appwrite/console.git
synced 2026-06-06 19:27:48 +00:00
FIx migrations query
This commit is contained in:
@@ -9,7 +9,10 @@ export async function load({ depends }) {
|
||||
const { migrations } = await sdk.forProject.migrations.list([
|
||||
// hides backups/restorations from migrations page.
|
||||
Query.equal('source', ['Appwrite', 'Firebase', 'NHost', 'Supabase']),
|
||||
Query.equal('destination', ['Appwrite', 'Firebase', 'NHost', 'Supabase'])
|
||||
Query.or([
|
||||
Query.equal('destination', ['Appwrite', 'Firebase', 'NHost', 'Supabase']),
|
||||
Query.isNull('destination'),
|
||||
]),
|
||||
]);
|
||||
|
||||
return {
|
||||
|
||||
Reference in New Issue
Block a user