mirror of
https://github.com/outline/outline.git
synced 2026-06-13 11:25:03 +03:00
3b17926023
* fix: Include results from users with accents in @mention search * test
16 lines
302 B
JavaScript
16 lines
302 B
JavaScript
"use strict";
|
|
|
|
module.exports = {
|
|
async up(queryInterface) {
|
|
await queryInterface.sequelize.query(
|
|
`CREATE EXTENSION IF NOT EXISTS "unaccent";`
|
|
);
|
|
},
|
|
|
|
async down(queryInterface) {
|
|
await queryInterface.sequelize.query(
|
|
`DROP EXTENSION IF EXISTS "unaccent";`
|
|
);
|
|
},
|
|
};
|