LearnersGuild/echo

View on GitHub
src/server/services/dataService/models/chapter.js

Summary

Maintainability
A
1 hr
Test Coverage
export default function chapterModel(thinky) {
  const {r, type: {string, number, date, array}} = thinky

  return {
    name: 'Chapter',
    table: 'chapters',
    schema: {
      id: string()
        .uuid(4)
        .allowNull(false),

      name: string()
        .allowNull(false),

      channelName: string()
        .allowNull(false),

      timezone: string()
        .allowNull(false),

      githubTeamId: number()
        .integer()
        .allowNull(true)
        .default(null),

      inviteCodes: array()
        .allowNull(false),

      createdAt: date()
        .allowNull(false)
        .default(r.now()),

      updatedAt: date()
        .allowNull(false)
        .default(r.now()),
    },
    associate: (Chapter, models) => {
      Chapter.hasMany(models.Cycle, 'cycles', 'id', 'chapterId', {init: false})
      Chapter.hasMany(models.Project, 'projects', 'id', 'chapterId', {init: false})
    },
  }
}