Bitwasp sql dump needed

Does anyone have a full working sql dump for the latest master bitwasp ? The one included is missing at least 4 columns and one table, so if anyone can post up the full working dump here that would be nice.

I managed to fix up the missing columns but now i'm stuck on the bw_payout_address table which is missing, if no one has the full dump do you have the table layout for the payout_address ?

I know there is a few markets who are/have ran it so someone must have the sql database dump

Thanks.


Comments


[1 Points] redditulousfun:

bitwasp is bad if you cant modify it you are asking for trouble


[1 Points] None:

The payout address table seems to be like this:

CREATE TABLE bw_payout_address (
    `id` int(9) auto_increment PRIMARY KEY,
    `address` varchar(40) NOT NULL,
    `user_id` int(9) NOT NULL,
    `time` int(11) NOT NULL
);