Skip to content

Commit

Permalink
Merge branch 'main' into cs-7598-ai-assistant-chat-should-automatical…
Browse files Browse the repository at this point in the history
…ly-display-return-value
  • Loading branch information
lukemelia committed Jan 2, 2025
2 parents ac45bad + cfd2579 commit 4c500e5
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
exports.up = (pgm) => {
pgm.createIndex('boxel_index', 'type');
pgm.createIndex('boxel_index', ['url', 'realm_version']);
pgm.createIndex('boxel_index', 'deps', { method: 'gin' });
pgm.createIndex('boxel_index', 'types', { method: 'gin' });
pgm.createIndex('boxel_index', 'fitted_html', { method: 'gin' });
pgm.createIndex('boxel_index', 'embedded_html', { method: 'gin' });
pgm.createIndex('boxel_index', 'search_doc', { method: 'gin' });
};

exports.down = (pgm) => {
pgm.dropIndex('boxel_index', 'type');
pgm.dropIndex('boxel_index', ['url', 'realm_version']);
pgm.dropIndex('boxel_index', 'deps');
pgm.dropIndex('boxel_index', 'types');
pgm.dropIndex('boxel_index', 'fitted_html');
pgm.dropIndex('boxel_index', 'embedded_html');
pgm.dropIndex('boxel_index', 'search_doc');
};

0 comments on commit 4c500e5

Please sign in to comment.