So I'm making a bot for Discord, and I'm using a ORM, Sequelize, with SQLite as database engine. My bot will basically have a shop where you can buy items, so I want to store items in the database, so I thought about it this way.
const UserItems = sequelize.define("useritems", {
user_id: Sequelize.STRING,
item_id: Sequelize.STRING,
count: {
type: Sequelize.INTEGER,
defaultValue: 0,
allowNull: false,
},
});
The problem with this is that my game will have about 100 items, taking in account that my bot will have up to about 1k users, wouldn't this way of storing the user items too heavy and slow?