Ultimate Woocommerce Auction Pro - Database Management
1) When you install and activate the Ultimate Woocommerce Auction Pro plugin, it will create one custom table "woo_ua_auction_log" in the database of your site. It stores all the bid data of the auction products. The column description of the table is shown below. Please review it.
| Table : woo_ua_auction_log | ||
| No | Column | Description | 
| 1 | id | auto increment unique id | 
| 2 | userid | id of user who placed bid | 
| 3 | auction_id | id of auction product in which bid placed | 
| 4 | bid | bid value | 
| 5 | date | date when bid placed | 
| 6 | proxy | auction has proxy auto bidding or not (1=yes, 0=no)  | 
   
 Below is real example of "woo_ua_auction_log" table. 
 
 Table prefix  : wp_
 Table name  : woo_ua_auction_log
| Table : wp_woo_ua_auction_log | |||||
| id | userid | auction_id | bid | date | proxy | 
| 1 | 7 | 17453 | 550.0000 | 2019-05-17 15:47:43 | 0 | 
| 2 | 15 | 17453 | 800.0000 | 2019-05-19 10:10:30 | 0 | 
| 3 | 2 | 21980 | 150.0000 | 2019-06-05 11:20:50 | 0 | 
| 4 | 33 | 21980 | 330.0000 | 2019-06-05 17:30:10 | 0 | 
2) There is a default "wp_users" table in the database. It includes all registered users(Admin, bidder, sellers etc.). 
3) There is a default "wp_postmeta" table in the database. It includes all auction product details.