Major Features Added: - Complete Plugin Architecture System with financial plugin - Multi-currency support with exchange rates - Course type system (online, classroom, hybrid) - Attendance tracking and QR code scanning - Classroom sessions management - Course sections and content management - Professional video player with authentication - Secure media serving system - Shopping cart and checkout system - Financial dashboard and earnings tracking - Trainee progress tracking - User notes and assignments system Backend Infrastructure: - Plugin loader and registry system - Multi-currency database models - Secure media middleware - Course access middleware - Financial plugin with payment processing - Database migrations for new features - API endpoints for all new functionality Frontend Components: - Course management interface - Content creation and editing - Section management with drag-and-drop - Professional video player - QR scanner for attendance - Shopping cart and checkout flow - Financial dashboard - Plugin management interface - Trainee details and progress views This represents a major evolution of CourseWorx from a basic LMS to a comprehensive educational platform with plugin architecture.
76 lines
1.3 KiB
JavaScript
76 lines
1.3 KiB
JavaScript
const { DataTypes } = require('sequelize');
|
|
const { sequelize } = require('../../../config/database');
|
|
|
|
const Currency = sequelize.define('Currency', {
|
|
id: {
|
|
type: DataTypes.UUID,
|
|
defaultValue: DataTypes.UUIDV4,
|
|
primaryKey: true
|
|
},
|
|
code: {
|
|
type: DataTypes.STRING(3),
|
|
allowNull: false,
|
|
unique: true,
|
|
validate: {
|
|
notEmpty: true,
|
|
len: [3, 3],
|
|
isUppercase: true
|
|
}
|
|
},
|
|
name: {
|
|
type: DataTypes.STRING,
|
|
allowNull: false,
|
|
validate: {
|
|
notEmpty: true
|
|
}
|
|
},
|
|
symbol: {
|
|
type: DataTypes.STRING(10),
|
|
allowNull: false,
|
|
validate: {
|
|
notEmpty: true
|
|
}
|
|
},
|
|
decimalPlaces: {
|
|
type: DataTypes.INTEGER,
|
|
allowNull: false,
|
|
defaultValue: 2,
|
|
validate: {
|
|
min: 0,
|
|
max: 4
|
|
}
|
|
},
|
|
isActive: {
|
|
type: DataTypes.BOOLEAN,
|
|
defaultValue: true
|
|
},
|
|
isBaseCurrency: {
|
|
type: DataTypes.BOOLEAN,
|
|
defaultValue: false
|
|
},
|
|
bankAccountDetails: {
|
|
type: DataTypes.JSONB,
|
|
allowNull: true,
|
|
defaultValue: null
|
|
},
|
|
metadata: {
|
|
type: DataTypes.JSONB,
|
|
allowNull: true,
|
|
defaultValue: {}
|
|
}
|
|
}, {
|
|
tableName: 'currencies',
|
|
indexes: [
|
|
{
|
|
fields: ['code']
|
|
},
|
|
{
|
|
fields: ['isActive']
|
|
},
|
|
{
|
|
fields: ['isBaseCurrency']
|
|
}
|
|
]
|
|
});
|
|
|
|
module.exports = Currency;
|