Skip to content

Commit

Permalink
fix(language-server): set migrate to safe
Browse files Browse the repository at this point in the history
  • Loading branch information
DominusKelvin committed Sep 13, 2024
1 parent 55bd8fc commit 7ba8c35
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/language-server/helpers/load-sails.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ module.exports = async function loadSails(workspaceUri, operation) {
new Sails().load(
{
hooks: { shipwright: false },
log: { level: 'silent' }
log: { level: 'silent' },
models: { migrate: 'safe' }
},
(err, sails) => {
if (err) {
Expand Down

0 comments on commit 7ba8c35

Please sign in to comment.