i read the basic documentation of new Adonis Js5, i make a new api serve and i compile the code with "node ace serve --watch" or "node ace build --watch" and always is the same "make:migration command not found" any idea for fix?
Adonis 5 "make:migration command not found" any idea?
3.1k Views Asked by Gario3 At
2
There are 2 best solutions below
0

After Adonis 5 going live, the database documentation has new installation instructions in the Introduction section, with this configuration step:
node ace configure @adonisjs/lucid
The
@adonisjs/lucid
dependency is missing (lucid provider)According to the official documentation
Setup Lucid
Official documentation : https://docs.adonisjs.com/guides/database/introduction
run (install dependence) :
and (setup lucid) :
and build one time application (
node ace build
)