thecsw / memeinvestor_bot

This bot can help you invest in memes and make a fortune out of it!
https://meme.market
GNU General Public License v2.0
135 stars 34 forks source link

Profit after tax #407

Closed Keanu73 closed 5 years ago

Keanu73 commented 5 years ago

I added a column to the Investments table, firm_tax, that will display the current firm tax when the investment is done. Here is a quick SQL script I wrote up to add the firm_tax column:

ALTER TABLE Investments ADD firm_tax INT(11) NULL AFTER profit;
ALTER TABLE Investments ALTER firm_tax SET DEFAULT NULL;
Keanu73 commented 5 years ago

I've tested the SQL and it should work.

Keanu73 commented 5 years ago

Thanks!