- Added new course management functionalities in VocabController, including creating, updating, and deleting courses and lessons. - Implemented enrollment and progress tracking for courses, along with grammar exercise creation and management. - Updated database schema to include tables for courses, lessons, enrollments, and grammar exercises. - Enhanced frontend with new routes and views for course listing and details, including internationalization support for course-related texts. - Improved user experience by adding navigation to courses from the main vocab trainer view.
70 lines
1.5 KiB
JavaScript
70 lines
1.5 KiB
JavaScript
import { Model, DataTypes } from 'sequelize';
|
|
import { sequelize } from '../../utils/sequelize.js';
|
|
|
|
class VocabCourse extends Model {}
|
|
|
|
VocabCourse.init({
|
|
id: {
|
|
type: DataTypes.INTEGER,
|
|
primaryKey: true,
|
|
autoIncrement: true
|
|
},
|
|
ownerUserId: {
|
|
type: DataTypes.INTEGER,
|
|
allowNull: false,
|
|
field: 'owner_user_id'
|
|
},
|
|
title: {
|
|
type: DataTypes.TEXT,
|
|
allowNull: false
|
|
},
|
|
description: {
|
|
type: DataTypes.TEXT,
|
|
allowNull: true
|
|
},
|
|
languageId: {
|
|
type: DataTypes.INTEGER,
|
|
allowNull: false,
|
|
field: 'language_id'
|
|
},
|
|
difficultyLevel: {
|
|
type: DataTypes.INTEGER,
|
|
allowNull: false,
|
|
defaultValue: 1,
|
|
field: 'difficulty_level'
|
|
},
|
|
isPublic: {
|
|
type: DataTypes.BOOLEAN,
|
|
allowNull: false,
|
|
defaultValue: false,
|
|
field: 'is_public'
|
|
},
|
|
shareCode: {
|
|
type: DataTypes.TEXT,
|
|
allowNull: true,
|
|
unique: true,
|
|
field: 'share_code'
|
|
},
|
|
createdAt: {
|
|
type: DataTypes.DATE,
|
|
allowNull: false,
|
|
defaultValue: DataTypes.NOW,
|
|
field: 'created_at'
|
|
},
|
|
updatedAt: {
|
|
type: DataTypes.DATE,
|
|
allowNull: false,
|
|
defaultValue: DataTypes.NOW,
|
|
field: 'updated_at'
|
|
}
|
|
}, {
|
|
sequelize,
|
|
modelName: 'VocabCourse',
|
|
tableName: 'vocab_course',
|
|
schema: 'community',
|
|
timestamps: true,
|
|
underscored: true
|
|
});
|
|
|
|
export default VocabCourse;
|