File size: 344 Bytes
80ddec3 |
1 2 3 4 5 6 7 8 9 10 |
const pool = require('../config/db');
const Transaction = {
create: async (user_id, type, amount, status, wallet_address) => {
await pool.query('INSERT INTO transactions (user_id, type, amount, status, wallet_address) VALUES (?, ?, ?, ?, ?)',
[user_id, type, amount, status, wallet_address]);
}
};
module.exports = Transaction; |