-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDB_data.sql
58 lines (54 loc) · 3.07 KB
/
DB_data.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
INSERT INTO auction_user (user_username, user_givenname, user_familyname, user_email, user_password, user_accountbalance, user_reputation)
VALUES
('black.panther', 'T', 'Challa', '[email protected]', 'Wakanda', '0.00' , '500'),
('superman', 'Clark', 'Kent', '[email protected]', 'kryptonite', '0.00', '900'),
('batman', 'Bruce', 'Wayne', '[email protected]', 'frankmiller', '0.00', '850'),
('spiderman', 'Peter', 'Parker', '[email protected]', 'arachnid', '0.00', '500'),
('ironman', 'Tony', 'Stark', '[email protected]', 'robertdowney', '0.00', '700'),
('captain.america', 'Steve', 'Rogers', '[email protected]', 'donaldtrump', '0.00', '300'),
('dr.manhatten', 'Jonathan', 'Osterman', '[email protected]', 'hydrogen', '0.00', '1000'),
('vampire.slayer', 'Buffy', 'Summers', '[email protected]', 'sarahgellar', '0.00' , '600'),
('Ozymandias', 'Adrian', 'Veidt', '[email protected]', 'shelley', '0.00' , '200'),
('Rorschach', 'Walter', 'Kovacs', '[email protected]', 'Joseph', '0.00' , '200'),
('power.woman', 'Jessica', 'Jones', '[email protected]', 'lukecage', '0.00' , '200')
;
INSERT INTO category (category_title, category_description)
VALUES
('apparel', 'Clothing, for example capes, masks, belts, boots, gloves etc'),
('equipment', 'Rings of power, hammers from the gods, grappling hooks, lassos of truth, and such like'),
('vehicles', 'Various forms of transportation, such as surf boards, tanks, jetpacks, etc'),
('property', 'For examples: planets, orbiting space stations, ice palaces at the North Pole.'),
('other', 'Other oddities.')
;
INSERT INTO auction (
auction_title,
auction_categoryid,
auction_description,
auction_reserveprice,
auction_startingprice,
auction_creationdate,
auction_startingdate,
auction_endingdate,
auction_userid)
VALUES
('Super cape', '1', 'One slightly used cape', '10.00', '0.01', '2018-02-14 00:00:00', '2018-02-15 00:00:00', '2018-03-14 00:00:00', '2'),
('Broken pyramid', '4', 'One very broken pyramid. No longer wanted. Buyer collect', '1000000.00', '1.00', '2018-02-14 00:00:00', '2018-02-15 00:00:00', '2018-02-28 00:00:00', '9'),
('One boot', '1', 'One boot. Lost the other in a battle with the Joker', '10.00', '0.50', '2018-02-14 00:00:00', '2018-02-15 00:00:00', '2018-03-14 00:00:00', '3'),
('Intrinsic Field Subtractor', '5', 'Hard to write about, but basically it changed me. A lot. ', '100.00', '1.00', '2018-02-14 00:00:00', '2018-02-15 00:00:00', '2018-06-30 00:00:00', '7'),
('A cache of vibranium', '5', 'A cache of vibranium stolen from Wakanda. ', '500000.00', '10000.00', '2018-02-14 00:00:00', '2018-02-15 00:00:00', '2018-06-30 00:00:00', '10')
;
INSERT INTO bid (
bid_userid,
bid_auctionid,
bid_amount,
bid_datetime)
values
('1', '1', '10.00', '2018-02-20 00:01:00'),
('9', '3', '100.00', '2018-02-20 00:10:00'),
('7', '3', '150.00', '2018-02-20 00:20:00'),
('9', '3', '200.00', '2018-02-20 00:30:00'),
('9', '3', '250.00', '2018-02-20 00:40:00'),
('7', '3', '350.00', '2018-02-20 00:50:00'),
('9', '3', '400.00', '2018-02-20 01:00:00'),
('7', '4', '1000.00', '2018-02-20 01:00:00')
;