One of my mysql table field is not detected by forest schema: update

You should be able to directly open the model in your generated code, and add those fields manually.

Adding

    coefficient: {
      type: DataTypes.DOUBLE,
    },

Inside the associated model (/models/your_model.js), then restarting your development server should make everything work as expected in your case.

Let me know if that helps :slight_smile: