Skip to content

Commit

Permalink
Merge pull request #21 from sailshq/feat/set-migration-to-safe
Browse files Browse the repository at this point in the history
fix(language-server): set migrate to safe
  • Loading branch information
DominusKelvin authored Sep 13, 2024
2 parents 55bd8fc + 7ba8c35 commit 4c8703e
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 4c8703e

Please sign in to comment.