1
0
Fork 0

Initial commit

Signed-off-by: Julien Riou <julien@riou.xyz>
This commit is contained in:
Julien Riou 2024-12-22 08:26:17 +01:00 committed by Julien Riou
commit f0cab2f7c3
Signed by: jriou
GPG key ID: 9A099EDA51316854
54 changed files with 19984 additions and 0 deletions

40
static/hrc/update.sql Normal file
View file

@ -0,0 +1,40 @@
begin;
/* Exact match */
update collection set name = 'Hard Rock Cafe Amsterdam' where name = 'Amsterdam';
update collection set name = 'Hard Rock Cafe Barcelona' where name = 'Barcelona';
update collection set name = 'Hard Rock Cafe Berlin' where name = 'Berlin';
update collection set name = 'Hard Rock Cafe Brussels' where name = 'Brussels';
update collection set name = 'Hard Rock Cafe Dublin' where name = 'Dublin';
update collection set name = 'Hard Rock Cafe Hamburg' where name = 'Hamburg';
update collection set name = 'Hard Rock Cafe Hollywood on Hollywood Blvd' where name = 'Hollywood';
update collection set name = 'Hard Rock Cafe Lisbon' where name = 'Lisbon';
update collection set name = 'Hard Rock Cafe Orlando' where name = 'Orlando';
update collection set name = 'Hard Rock Cafe Paris' where name = 'Paris';
update collection set name = 'Hard Rock Cafe Prague' where name = 'Prague';
update collection set name = 'Hard Rock Cafe San Francisco' where name = 'San Francisco';
/* Multiple restaurants */
update collection set name = 'Hard Rock Cafe London' where name = 'London';
update collection set name = 'Hard Rock Cafe Miami' where name = 'Miami';
update collection set name = 'Hard Rock Cafe New York Times Square' where name = 'New York';
update collection set name = 'Hard Rock Cafe Yankee Stadium' where name = 'Yankee Stadium';
update collection set name = 'Hard Rock Cafe Changi Airport Singapore' where name = 'Singapore';
/* Multiple T-Shirts */
delete from collection where name = 'Los Angeles';
delete from collection where name = 'Miami Gardens';
/* Wrong match */
update collection set name = 'Hard Rock Cafe Angkor' where name = 'Angkor';
/* Closed restaurants */
delete from collection where name in (
'Antwerp',
'Boston',
'Detroit',
'Ho Chi Minh City',
'Oslo'
);
commit;