Не сработала команда Adonis migration:run
Добавьте этот код в файл миграции
'use strict'
/** @type {import('@adonisjs/lucid/src/Schema')} */
const Schema = use('Schema')
class QuoteSchema extends Schema {
up () {
this.create('quotes', (table) => {
table.increments()
table.integer('user_id').notNullable()
table.string('username', 80).notNullable()
table.string('body').notNullable()
table.timestamps()
})
}
down () {
this.drop('quotes')
}
}
module.exports = QuoteSchema
После этого я выполнил миграцию Adonis migration: запустить
и я вижу следующую ошибку
TypeError: schemas[schema] не является конструктором в Migration._execute