MarcTowler / ItsLit-RPG-Tracker

Issue tracker for all parts of the ItsLit RPG
0 stars 0 forks source link

Build an Auction House #102

Closed MarcTowler closed 4 years ago

MarcTowler commented 4 years ago

Add an auction house (website and bot) so that people can put any item on the market... Need to take a percentage cut from the final sale

MarcTowler commented 4 years ago

create table auction_bids (bid int(10) primary key auto_increment, aid int(3) not null, uid int(3) not null); create table auction ( aid int(3) primary key auto_increment, iid int(3) not null, start_time datetime default current_timestamp, end_time datetime not null, active boolean default true);

MarcTowler commented 4 years ago

Patched in 2db7dfa