Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.2k views
in Technique[技术] by (71.8m points)

express - Error creating migration with Knex and SqLite

Actually i'm building up a simple Express Server with SQLite and Knex, and in the first steps i can't create a knex migration with command: npx knex migrate:make test, cause the following error appears:

Failed to resolve config file, knex cannot determine where to generate migrations

Here is my simple knexfile.js

    module.exports = {
  development: {
    client: "sqlite3",
    connection: {
      filename: "./data/finanzen.db3"
    }
  },
  useNullAsDefault: true  
};

Can Somebody help me solving this error?

question from:https://stackoverflow.com/questions/65645706/error-creating-migration-with-knex-and-sqlite

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...