Error "make:migration" command not found after upgrade #1833
-
I have upgraded the adonis app to the latest version (october release) and everything is working fine except the migrations commands, they all seem to have disapeared. Has something change? This is what comes up with |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
Hey, I think you have to install lucid. Use Lucid comes to you with Database and also new commands like make:migration or make:model. Probably you lost this package in update process. |
Beta Was this translation helpful? Give feedback.
Hey, I think you have to install lucid. Use
npm i @adonisjs/lucid@alpha
and then invoke it withnode ace invoke @adonisjs/lucid
. Why I think it should work? Because you have neither migrattion command nor model command. I hope it’ll work.Lucid comes to you with Database and also new commands like make:migration or make:model.
Probably you lost this package in update process.