Files
adastra_api/src/database/models/mysql/index.js
T
julien ad7fc4384a feat(skydiver-profile): add SkydiverProfile MySQL model and service
Introduces the skydiver_profile table as an optional 1-to-1 extension
of the user table, holding skydive-specific fields (licence, poids,
bg_image). Wired up with Sequelize associations and a service with
upsert support. Migration, model, relationships, and service layer
all included.
2026-04-25 22:32:30 +02:00

17 lines
737 B
JavaScript

exports.Article = require('./Article');
//exports.ArticleTag = require('./ArticleTag');
exports.Brand = require('./Brand');
exports.Category = require('./Category');
exports.Comment = require('./Comment');
exports.Favorite = require('./Favorite');
exports.Follower = require('./Follower');
exports.Packaging = require('./Packaging');
exports.Product = require('./Product');
exports.ProductCategoryXref = require('./ProductCategoryXref');
exports.ProductTagXref = require('./ProductTagXref');
exports.Role = require('./Role');
exports.SkydiverProfile = require('./SkydiverProfile');
exports.Tag = require('./Tag');
exports.TagList = require('./TagList');
exports.User = require('./User');
exports.UserRoleXref = require('./UserRoleXref');