floriday/models/tradeItem/botanicalNames.js

18 lines
314 B
JavaScript
Raw Normal View History

import { Sequelize } from 'sequelize';
2022-12-05 12:53:30 +00:00
const botanicalNames = {
2023-05-15 12:19:43 +00:00
name: {
type: Sequelize.STRING,
},
2022-12-05 12:53:30 +00:00
};
export default (sequelize) => {
2023-05-15 12:19:43 +00:00
const BotanicalNames = sequelize.define(
'tradeItem_botanicalNames',
botanicalNames, {
timestamps: false,
freezeTableName: true,
}
);
return BotanicalNames;
};