6 lines
219 B
SQL
6 lines
219 B
SQL
INSERT INTO favorites (id, user_id, target_type, target_id) VALUES
|
|
(100001, 100006, 'player', 100001),
|
|
(100002, 100006, 'shop', 100001),
|
|
(100003, 100007, 'player', 100003),
|
|
(100004, 100007, 'shop', 100002);
|