| 123456789101112131415161718192021222324252627282930313233343536 |
- /*
- Navicat MySQL Data Transfer
- Source Server : localhost
- Source Server Version : 50528
- Source Host : localhost:3306
- Source Database : test
- Target Server Type : MYSQL
- Target Server Version : 50528
- File Encoding : 65001
- Date: 2013-06-02 17:52:57
- */
- SET FOREIGN_KEY_CHECKS=0;
- -- ----------------------------
- -- Table structure for `auctions`
- -- ----------------------------
- DROP TABLE IF EXISTS `auctions`;
- CREATE TABLE `auctions` (
- `id` int(11) NOT NULL,
- `BiddingFor` varchar(64) NOT NULL DEFAULT '(none)',
- `InProgress` int(11) NOT NULL DEFAULT '0',
- `Bid` int(11) NOT NULL DEFAULT '0',
- `Bidder` int(11) NOT NULL DEFAULT '0',
- `Expires` int(11) NOT NULL DEFAULT '0',
- `Wining` varchar(24) NOT NULL DEFAULT '(none)',
- `Increment` int(11) NOT NULL DEFAULT '0',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
- -- ----------------------------
- -- Records of auctions
- -- ----------------------------
|