repos / pico

pico services mono repo
git clone https://github.com/picosh/pico.git

commit
0cd1fa9
parent
0a888aa
author
Eric Bower
date
2024-05-30 10:10:52 -0400 EDT
chore(plus): change payment history amount to $24
1 files changed,  +1, -1
M db/postgres/storage.go
+1, -1
1@@ -1893,7 +1893,7 @@ func (me *PsqlDB) AddPicoPlusUser(username, paymentType, txId string) error {
2 			TxID:  txId,
3 		}
4 		_, err := tx.Exec(
5-			`INSERT INTO payment_history (user_id, payment_type, amount, data) VALUES ($1, $2, 20 * 1000000, $3);`,
6+			`INSERT INTO payment_history (user_id, payment_type, amount, data) VALUES ($1, $2, 24 * 1000000, $3);`,
7 			user.ID,
8 			paymentType,
9 			data,