選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

profile.js 340B

1234567891011121314
  1. const Schwifty = require('@hapipal/schwifty')
  2. const Joi = require('joi')
  3. module.exports = class Profile extends Schwifty.Model {
  4. static get tableName() {
  5. return 'profiles'
  6. }
  7. static get joiSchema() {
  8. return Joi.object({
  9. profile_id: Joi.number(),
  10. user_id: Joi.number(),
  11. })
  12. }
  13. }