-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpledges.sql
33 lines (33 loc) · 844 Bytes
/
pledges.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
INSERT INTO pledges
(id, user_id, project_id, amount)
VALUES
("1","19","6","1943"),
("2","19","7","1516"),
("3","16","1","579"),
("4","15","2","1498"),
("5","4","7","1711"),
("6","5","4","1999"),
("7","15","10","1501"),
("8","18","5","1753"),
("9","15","3","576"),
("10","1","2","1086"),
("11","10","7","191"),
("12","10","4","701"),
("13","15","8","1214"),
("14","17","9","1883"),
("15","19","6","171"),
("16","11","8","1103"),
("17","8","10","210"),
("18","15","1","619"),
("19","17","7","41"),
("20","14","6","668"),
("21","20","7","1255"),
("22","12","4","714"),
("23","11","5","599"),
("24","9","6","638"),
("25","7","9","1343"),
("26","13","1","719"),
("27","16","6","1568"),
("28","8","7","1884"),
("29","11","9","874"),
("30","6","1","80");