-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlocalDiskDb.db
960 lines (960 loc) · 35.9 KB
/
localDiskDb.db
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
{
"data": {
"restaurants": [
{
"name": "Mission Chinese Food",
"neighborhood": "Manhattan",
"photograph": "1",
"address": "171 E Broadway, New York, NY 10002",
"latlng": {
"lat": 40.713829,
"lng": -73.989667
},
"cuisine_type": "Asian",
"operating_hours": {
"Monday": "5:30 pm - 11:00 pm",
"Tuesday": "5:30 pm - 11:00 pm",
"Wednesday": "5:30 pm - 11:00 pm",
"Thursday": "5:30 pm - 11:00 pm",
"Friday": "5:30 pm - 11:00 pm",
"Saturday": "12:00 pm - 4:00 pm, 5:30 pm - 12:00 am",
"Sunday": "12:00 pm - 4:00 pm, 5:30 pm - 11:00 pm"
},
"createdAt": 1504095563444,
"updatedAt": "2018-06-24T10:25:07.081Z",
"id": 1,
"is_favorite": "false"
},
{
"name": "Emily",
"neighborhood": "Brooklyn",
"photograph": "2",
"address": "919 Fulton St, Brooklyn, NY 11238",
"latlng": {
"lat": 40.683555,
"lng": -73.966393
},
"cuisine_type": "Pizza",
"operating_hours": {
"Monday": "5:30 pm - 11:00 pm",
"Tuesday": "5:30 pm - 11:00 pm",
"Wednesday": "5:30 pm - 11:00 pm",
"Thursday": "5:30 pm - 11:00 pm",
"Friday": "5:30 pm - 11:00 pm",
"Saturday": "5:00 pm - 11:30 pm",
"Sunday": "12:00 pm - 3:00 pm, 5:00 pm - 11:00 pm"
},
"createdAt": 1504095568414,
"updatedAt": "2018-06-23T19:11:51.214Z",
"is_favorite": "false",
"id": 2
},
{
"name": "Kang Ho Dong Baekjeong",
"neighborhood": "Manhattan",
"photograph": "3",
"address": "1 E 32nd St, New York, NY 10016",
"latlng": {
"lat": 40.747143,
"lng": -73.985414
},
"cuisine_type": "Asian",
"operating_hours": {
"Monday": "11:30 am - 2:00 am",
"Tuesday": "11:30 am - 2:00 am",
"Wednesday": "11:30 am - 2:00 am",
"Thursday": "11:30 am - 2:00 am",
"Friday": "11:30 am - 6:00 am",
"Saturday": "11:30 am - 6:00 am",
"Sunday": "11:30 am - 2:00 am"
},
"createdAt": 1504095571434,
"updatedAt": "2018-06-23T19:16:50.198Z",
"id": 3,
"is_favorite": "false"
},
{
"name": "Katz's Delicatessen",
"neighborhood": "Manhattan",
"photograph": "4",
"address": "205 E Houston St, New York, NY 10002",
"latlng": {
"lat": 40.722216,
"lng": -73.987501
},
"cuisine_type": "American",
"operating_hours": {
"Monday": "8:00 am - 10:30 pm",
"Tuesday": "8:00 am - 10:30 pm",
"Wednesday": "8:00 am - 10:30 pm",
"Thursday": "8:00 am - 2:30 am",
"Friday": "8:00 am - Sat",
"Saturday": "Open 24 hours",
"Sunday": "Sat - 10:30 pm"
},
"createdAt": 1504095567091,
"updatedAt": "2018-06-23T19:11:14.891Z",
"is_favorite": "false",
"id": 4
},
{
"name": "Roberta's Pizza",
"neighborhood": "Brooklyn",
"photograph": "5",
"address": "261 Moore St, Brooklyn, NY 11206",
"latlng": {
"lat": 40.705089,
"lng": -73.933585
},
"cuisine_type": "Pizza",
"operating_hours": {
"Monday": "11:00 am - 12:00 am",
"Tuesday": "11:00 am - 12:00 am",
"Wednesday": "11:00 am - 12:00 am",
"Thursday": "11:00 am - 12:00 am",
"Friday": "11:00 am - 12:00 am",
"Saturday": "10:00 am - 12:00 am",
"Sunday": "10:00 am - 12:00 am"
},
"createdAt": 1504095567071,
"updatedAt": "2018-06-23T19:11:09.555Z",
"is_favorite": "false",
"id": 5
},
{
"name": "Hometown BBQ",
"neighborhood": "Brooklyn",
"photograph": "6",
"address": "454 Van Brunt St, Brooklyn, NY 11231",
"latlng": {
"lat": 40.674925,
"lng": -74.016162
},
"cuisine_type": "American",
"operating_hours": {
"Monday": "Closed",
"Tuesday": "12:00 pm - 10:00 pm",
"Wednesday": "12:00 pm - 10:00 pm",
"Thursday": "12:00 pm - 10:00 pm",
"Friday": "12:00 pm - 11:00 pm",
"Saturday": "12:00 pm - 11:00 pm",
"Sunday": "12:00 pm - 9:00 pm"
},
"createdAt": 1504095567071,
"updatedAt": "2018-06-23T19:11:05.007Z",
"is_favorite": "false",
"id": 6
},
{
"name": "Superiority Burger",
"neighborhood": "Manhattan",
"photograph": "7",
"address": "430 E 9th St, New York, NY 10009",
"latlng": {
"lat": 40.727397,
"lng": -73.983645
},
"cuisine_type": "American",
"operating_hours": {
"Monday": "11:30 am - 10:00 pm",
"Tuesday": "Closed",
"Wednesday": "11:30 am - 10:00 pm",
"Thursday": "11:30 am - 10:00 pm",
"Friday": "11:30 am - 10:00 pm",
"Saturday": "11:30 am - 10:00 pm",
"Sunday": "11:30 am - 10:00 pm"
},
"createdAt": 1504095567091,
"updatedAt": "2018-06-23T19:11:20.303Z",
"is_favorite": "false",
"id": 7
},
{
"name": "The Dutch",
"neighborhood": "Manhattan",
"photograph": "8",
"address": "131 Sullivan St, New York, NY 10012",
"latlng": {
"lat": 40.726584,
"lng": -74.002082
},
"cuisine_type": "American",
"operating_hours": {
"Monday": "11:30 am - 3:00 pm, 5:30 pm - 11:00 pm",
"Tuesday": "11:30 am - 3:00 pm, 5:30 pm - 11:00 pm",
"Wednesday": "11:30 am - 3:00 pm, 5:30 pm - 11:00 pm",
"Thursday": "11:30 am - 3:00 pm, 5:30 pm - 11:00 pm",
"Friday": "11:30 am - 3:00 pm, 5:30 pm - 11:30 pm",
"Saturday": "10:00 am - 3:00 pm, 5:30 pm - 11:30 pm",
"Sunday": "10:00 am - 3:00 pm, 5:30 pm - 11:00 pm"
},
"createdAt": 1504095567091,
"updatedAt": "2018-06-23T19:11:26.568Z",
"is_favorite": "false",
"id": 8
},
{
"name": "Mu Ramen",
"neighborhood": "Queens",
"photograph": "9",
"address": "1209 Jackson Ave, Queens, NY 11101",
"latlng": {
"lat": 40.743797,
"lng": -73.950652
},
"cuisine_type": "Asian",
"operating_hours": {
"Monday": "5:00 pm - 10:00 pm",
"Tuesday": "5:00 pm - 10:00 pm",
"Wednesday": "5:00 pm - 10:00 pm",
"Thursday": "5:00 pm - 10:00 pm",
"Friday": "5:00 pm - 11:00 pm",
"Saturday": "5:00 pm - 11:00 pm",
"Sunday": "5:00 pm - 10:00 pm"
},
"createdAt": 1504095567191,
"updatedAt": "2018-06-23T19:11:32.161Z",
"is_favorite": "false",
"id": 9
},
{
"name": "Casa Enrique",
"neighborhood": "Queens",
"photograph": "10",
"address": "5-48 49th Ave, Queens, NY 11101",
"latlng": {
"lat": 40.743394,
"lng": -73.954235
},
"cuisine_type": "Mexican",
"operating_hours": {
"Monday": "5:00 pm - 12:00 am",
"Tuesday": "5:00 pm - 12:00 am",
"Wednesday": "5:00 pm - 12:00 am",
"Thursday": "5:00 pm - 12:00 am",
"Friday": "5:00 pm - 12:00 am",
"Saturday": "11:00 am - 12:00 am",
"Sunday": "11:00 am - 12:00 am"
},
"createdAt": 1504095567183,
"updatedAt": "2018-06-23T19:11:39.605Z",
"is_favorite": "false",
"id": 10
}
],
"reviews": [
{
"id": 1,
"restaurant_id": 1,
"name": "Steve",
"createdAt": 1504095567183,
"updatedAt": 1504095567183,
"rating": 4,
"comments": "Mission Chinese Food has grown up from its scrappy Orchard Street days into a big, two story restaurant equipped with a pizza oven, a prime rib cart, and a much broader menu. Yes, it still has all the hits — the kung pao pastrami, the thrice cooked bacon —but chef/proprietor Danny Bowien and executive chef Angela Dimayuga have also added a raw bar, two generous family-style set menus, and showstoppers like duck baked in clay. And you can still get a lot of food without breaking the bank."
},
{
"id": 2,
"restaurant_id": 1,
"name": "Morgan",
"createdAt": 1504095567183,
"updatedAt": 1504095567183,
"rating": "4",
"comments": "This place is a blast. Must orders: GREEN TEA NOODS, sounds gross (to me at least) but these were incredible!, Kung pao pastrami (but you already knew that), beef tartare was a fun appetizer that we decided to try, the spicy ma po tofu SUPER spicy but delicous, egg rolls and scallion pancake i could have passed on... I wish we would have gone with a larger group, so much more I would have liked to try!"
},
{
"id": 3,
"restaurant_id": 1,
"name": "Jason",
"createdAt": 1504095567183,
"updatedAt": 1504095567183,
"rating": "3",
"comments": "I was VERY excited to come here after seeing and hearing so many good things about this place. Having read much, I knew going into it that it was not going to be authentic Chinese. The place was edgy, had a punk rock throwback attitude, and generally delivered the desired atmosphere. Things went downhill from there though. The food was okay at best and the best qualities were easily overshadowed by what I believe to be poor decisions by the kitchen staff."
},
{
"id": 4,
"restaurant_id": 2,
"name": "Steph",
"createdAt": 1504095567183,
"updatedAt": 1504095567183,
"rating": 4,
"comments": "Five star food, two star atmosphere. I would definitely get takeout from this place - but dont think I have the energy to deal with the hipster ridiculousness again. By the time we left the wait was two hours long."
},
{
"id": 5,
"restaurant_id": 2,
"name": "Steve",
"createdAt": 1504095567183,
"updatedAt": 1504095567183,
"rating": 4,
"comments": "This cozy Clinton Hill restaurant excels at both straightforward and unusual wood-fired pizzas. If you want a taste of the latter, consider ordering the Emily, which is topped with mozzarella, pistachios, truffled sottocenere cheese, and honey. The menu includes salads and a handful of starters, as well as a burger that some meat connoisseurs consider to be among the best in the city."
},
{
"id": 6,
"restaurant_id": 2,
"name": "Sam",
"createdAt": 1504095567183,
"updatedAt": 1504095567183,
"rating": 5,
"comments": "5 star atmosphere as it is very cozy with great staff. 5 star food as their Emmy burger is outrageously good. and its on a pretzel bun.. Too juicy for its own good and downright addicting. Also try the Colony pizza. Many others looked like worth competitors, but the Colony really found its way to my heart. when you start with a great crust, top it with top notch cheese and sauce, you've got a winner. But, if you go a step further and add the salty from the pepperoni, the sweet from the honey, and the spicy from the chili oil.... your mouth is confused and happy at the same time."
},
{
"id": 7,
"restaurant_id": 3,
"name": "Steve",
"createdAt": 1504095567183,
"updatedAt": 1504095567183,
"rating": 4,
"comments": "The tables at this 32nd Street favorite are outfitted with grills for cooking short ribs, brisket, beef tongue, rib eye, and pork jowl. The banchan plates are uniformly good, and Deuki Hong’s menu also includes winning dishes like stir-fried squid noodles, kimchi stew, and seafood pancakes. If it’s available, make sure to order the kimchi and rice “lunchbox.†Baekjeong is a great place for large groups and birthday parties."
},
{
"id": 8,
"restaurant_id": 3,
"name": "ZS",
"createdAt": 1504095567183,
"updatedAt": 1504095567183,
"rating": 5,
"comments": "I've been to Korea before and many other Korean BBQ places. We had the regular pork belly and a beef (forgot which cut) and a seafood tofu soup. Two meat and a soup was just prefect for the two of us. We could have done one meat and one soup. The portions of the meat are great! The beef was juicy, tender and so good. The sides were excellent. "
},
{
"id": 9,
"restaurant_id": 3,
"name": "Emily",
"createdAt": 1504095567183,
"updatedAt": 1504095567183,
"rating": 2,
"comments": "MEH. I've tried their Jersey location as well but Kang Ho Dong meat quality is severely decreasing. A Korean bbq place with whatever meat? I think NOT!"
},
{
"id": 10,
"restaurant_id": 4,
"name": "Steve",
"createdAt": 1504095567183,
"updatedAt": 1504095567183,
"rating": 5,
"comments": "In 127 years, little has changed at Katz's. It remains one of New York's — and the country's — essential Jewish delicatessens. Every inch of the massive Lower East Side space smells intensely of pastrami and rye loaves. The sandwiches are massive, so they are best when shared. Order at the counter, and don't forget to tip your slicer — your sandwich will be better for it."
},
{
"id": 11,
"restaurant_id": 4,
"name": "Allen",
"createdAt": 1504095567183,
"updatedAt": 1504095567183,
"rating": 5,
"comments": "If I lived in NY and got diabetes from eating here every single time I ate, I would do it over and over and over again just for that first bite. These guys know how to make a sandwich. The heart attack comes free of charge! Came by while I was visiting NYC. First pit-stop when I come back :)!"
},
{
"id": 12,
"restaurant_id": 4,
"name": "David",
"createdAt": 1504095567183,
"updatedAt": 1504095567183,
"rating": 2,
"comments": "Ok so four of us came. One more later who didn't order becauase it's so expensive and simple. Seriously, a bunch of meat albeit you can sample beforehand on rye/white/wheat bread. Cheese extra. Pickles free, you can just ask them at the pickup counter. But seriously 20 bucks gone for an non-flavored half sandwich. And a line that is long, especially if you want seating. I'm down to just take a quick look where Sally and Harry sat and leave to the other delis all around NYC. Oh and they accept Samsung pay."
},
{
"id": 13,
"restaurant_id": 5,
"name": "Steve",
"createdAt": 1504095567183,
"updatedAt": 1504095567183,
"rating": 4,
"comments": "Roberta's is the epicenter of the modern Brooklyn food scene.The pizzas are fantastic, but the restaurant really flexes its muscles with the vegetable dishes. In addition to the pies, consider ordering the radishes, the romaine salad, the roasted beets, and some of the charcuterie."
},
{
"id": 14,
"restaurant_id": 5,
"name": "Raymond",
"createdAt": 1504095567183,
"updatedAt": 1504095567183,
"rating": 4,
"comments": "Roberta's, one of the better pizzas I have had in my life. Very trendy and hipsterish spot. Came here for lunch on a random weekday afternoon and when we arrived, there was a line forming already. The space is a bit cramped. You'll get to know your neighbors soon enough. The pizza is just delightful and delicious. It's a ncie plus that you get to see them firing up the pizzas in the corner. The major issue with Roberta's is the trek out to the Williamsburg/Bushwick."
},
{
"id": 15,
"restaurant_id": 5,
"name": "Laurel",
"createdAt": 1504095567183,
"updatedAt": 1504095567183,
"rating": 4,
"comments": "The pizza is fantastic, not THE best I've ever had, but would definitely go back since it has great food and great ambiance. Definitely worth going to. It has A LOT of hype in the New York food scene, and I question if it deserves all of it, but it's still a totally great spot to hit up when in the area!!"
},
{
"id": 16,
"restaurant_id": 6,
"name": "Steve",
"createdAt": 1504095567183,
"updatedAt": 1504095567183,
"rating": 4,
"comments": "Barbecue aficionados agree that Billy Durney is cooking up some of the best Texas-style barbecue in the city. Straightforward classics like smoked brisket and baby back ribs are always a strong choice, but there are also options like pork belly tacos and a lamb belly banh mi. The space is sprawling in a way that feels like the real deal, and Durney himself can usually be found working the room, and keeping a watchful eye on the smoking meats. It's counter service only, and there's often a line, but for the scene and certainly for the meat, it's easily worth the trip to Red Hook."
},
{
"id": 17,
"restaurant_id": 6,
"name": "Michelle",
"createdAt": 1504095567183,
"updatedAt": 1504095567183,
"rating": 4,
"comments": "Overall, a great try of New York BBQ. The restaurant décor is rustic with a good amount of seats to sit and enjoy the meal. I definitely would love to come back and try that monster of a beef rib!"
},
{
"id": 18,
"restaurant_id": 6,
"name": "Ai-Mei",
"createdAt": 1504095567183,
"updatedAt": 1504095567183,
"rating": 4,
"comments": "mmmmmm, what a gem this is in bklyn! I loveeee how soft their brisket is here. Their pork tacos are to die for, their different variety of ribs and lastly, their lamb is not gamey at all. Super wallet friendly for the amount they give you. I highly recommend this spot- after eating here, you can definitely walk over for Steve's key lime pies."
},
{
"id": 19,
"restaurant_id": 7,
"name": "Steve",
"createdAt": 1504095567183,
"updatedAt": 1504095567183,
"rating": 4,
"comments": "Brooks Headley’s tiny East Village cafe is so much more than a veggie burger spot — it's one of the best bang-for-your-buck restaurants in Lower Manhattan. Headley and his crew turn seasonal vegetables into delectable salads and riffs on American comfort food favorites. The specials menu changes daily, and the rest of the menu is constantly evolving. You can get a lot of food to eat here for under $15 per person."
},
{
"id": 20,
"restaurant_id": 7,
"name": "Gabriel",
"createdAt": 1504095567183,
"updatedAt": 1504095567183,
"rating": 5,
"comments": "I was turned on to this place following the glowing NYT review. Its near my area of the city so I figured why not go? Man they weren't kidding, Superiority Burger is probably the best vegetarian experience I've ever had!"
},
{
"id": 21,
"restaurant_id": 7,
"name": "Shivi",
"createdAt": 1504095567183,
"updatedAt": 1504095567183,
"rating": 4,
"comments": "Great flavors and very satisfying. Craving a sandwich, I stopped by on a Friday night with a vegetarian friend. Super small location with just a few seats inside. Ambiance is a bit industrial, good is definitely much more sophisticated than the look of the place! Ordered the superiority burger anda side of potato salad. The potato salad was very light and tasted clean ( less mayo, lots of dill and some cucumber) -- refreshing for a humid summer night! Sandwich was surprisingly delicious - it is very small ( funny allusion to a White Castle burger) but it packs a punch! Not only are there layers of flavors ( amazing sauces) but the party itself had a great texture Ahmed flavor-- well done and so wonderful! Will definitely stop by again for an overall amazing burger/sandwich. Staff was super nice and accommodating but not out of the way friendly."
},
{
"id": 22,
"restaurant_id": 8,
"name": "Steve",
"createdAt": 1504095567183,
"updatedAt": 1504095567183,
"rating": 4,
"comments": "Over the last five years, The Dutch has turned into the quintessential American restaurant that chef Andrew Carmellini and partners Josh Pickard and Luke Ostrom sought to evoke when it first opened. It’s a great choice when you’re craving a steak, a burger, or oysters, and the menu always includes plentiful seafood options as well as pastas. The Dutch is now an indelible part of the Soho landscape."
},
{
"id": 23,
"restaurant_id": 8,
"name": "Loren",
"createdAt": 1504095567183,
"updatedAt": 1504095567183,
"rating": 4,
"comments": "I randomly came here on a Saturday night. I was pleasantly surprised with the food and the service. We had the calamari and the ceviche with avocado, and then the catfish. Oh! Then we had the banana soufflé for dessert with ice cream. It was all delicious and well put together. Would love to eat here again."
},
{
"id": 24,
"restaurant_id": 8,
"name": "Lori",
"createdAt": 1504095567183,
"updatedAt": 1504095567183,
"rating": 4,
"comments": "Aside from the slightly claustrophobic dining area and the fact that you may have difficulty hearing your dining companion, I'd return to The Dutch without hesitation. The food is surprisingly well-executed and conceived, and our dinner service flowed smoothly without a hitch. Just make sure to get a reservation in advance, as I'm sure more than just a few other people will have the same idea."
},
{
"id": 25,
"restaurant_id": 9,
"name": "Steve",
"createdAt": 1504095567183,
"updatedAt": 1504095567183,
"rating": 4,
"comments": "Joshua Smookler’s two-year-old ramen shop serves one of the best tonkotsu broths around. Beyond ramen, Mu also offers some high minded plates, like foie gras-stuffed chicken wings, as well as dry-aged Japanese Wagyu beef specials. Mu is just 10 short minutes away from Midtown via the 7-train."
},
{
"id": 26,
"restaurant_id": 9,
"name": "Brittany",
"createdAt": 1504095567183,
"updatedAt": 1504095567183,
"rating": 4,
"comments": "Overall, I would definitely recommend this place if you enjoy thick curly noodles with a thick, intense broth. If you don't there are still other options but I can't vouch for those."
},
{
"id": 27,
"restaurant_id": 9,
"name": "Sally",
"createdAt": 1504095567183,
"updatedAt": 1504095567183,
"rating": 4,
"comments": "One of the tastiest and most unique ramen places I've been to in NYC, but also the priciest. I think overall its worth the try. Not an everyday casual ramen shop though."
},
{
"id": 28,
"restaurant_id": 10,
"name": "Steve",
"createdAt": 1504095567183,
"updatedAt": 1504095567183,
"rating": 5,
"comments": "Head to this laid-back Long Island City restaurant for beef tongue tacos, chicken smothered in a heady mole sauce, and a monster crab tostada. New York's only Michelin-starred Mexican restaurant is an especially cool choice for lunch during the week or drinks after work. Eater critic Ryan Sutton awarded this restaurant two stars."
},
{
"id": 29,
"restaurant_id": 10,
"name": "Rob",
"createdAt": 1504095567183,
"updatedAt": 1504095567183,
"rating": 5,
"comments": "The hype was real. Please go. Get the ceviche. And the tres leches. You're welcome"
},
{
"id": 30,
"restaurant_id": 10,
"name": "Jason",
"createdAt": 1504095567183,
"updatedAt": 1504095567183,
"rating": 4,
"comments": "For a Michelin star restaurant, it's fairly priced and the food is fairly good. Started with a strawberry margarita which was good in flavor but not much alcohol. Had the chicken enchiladas with salsa verde and it was really good. Great balance in flavor and a good portion. Extra tasty with their hot sauces. My wife had the lamb but it was a bit too salty for our taste. Although, it was cooked very well and fell off the bone. The highlight of the night was the tres leches cake. Probably the best I've ever had to be honest. Not too sweet and very milky. Overall, one of my top 3 favorite Mexican in NY."
},
{
"restaurant_id": 2,
"name": "engin",
"rating": "5",
"comments": "great place",
"createdAt": "2018-05-29T15:07:34.692Z",
"updatedAt": "2018-05-29T15:07:34.692Z",
"id": 31
},
{
"restaurant_id": 9,
"name": "Engin ",
"rating": "4",
"comments": "awesome",
"createdAt": "2018-05-29T15:08:24.888Z",
"updatedAt": "2018-05-29T15:08:24.888Z",
"id": 32
},
{
"restaurant_id": 9,
"name": "Engin ",
"rating": "5",
"comments": "awesome",
"createdAt": "2018-05-29T15:09:36.770Z",
"updatedAt": "2018-05-29T15:09:36.770Z",
"id": 33
},
{
"restaurant_id": 2,
"name": "engin",
"rating": 4,
"comments": "awesome",
"updatedAt": 1527608103158,
"createdAt": "2018-05-29T15:39:46.178Z",
"id": 34
},
{
"restaurant_id": 6,
"name": "engin",
"rating": 4,
"comments": "Really good restaurant",
"updatedAt": 1527643241739,
"createdAt": "2018-05-30T01:23:58.517Z",
"id": 35
},
{
"restaurant_id": 6,
"name": "engin bozkurt",
"rating": 5,
"comments": "awesome",
"updatedAt": 1527643283035,
"createdAt": "2018-05-30T01:23:58.527Z",
"id": 36
},
{
"restaurant_id": 6,
"name": "Engin Bozkurt",
"rating": 3,
"comments": "awesome",
"updatedAt": 1527643411893,
"createdAt": "2018-05-30T01:23:58.531Z",
"id": 37
},
{
"restaurant_id": 6,
"name": "engin",
"rating": 4,
"comments": "Really good restaurant",
"updatedAt": 1527643241739,
"createdAt": "2018-05-30T01:24:22.554Z",
"id": 38
},
{
"restaurant_id": 6,
"name": "engin bozkurt",
"rating": 5,
"comments": "awesome",
"updatedAt": 1527643283035,
"createdAt": "2018-05-30T01:24:22.572Z",
"id": 39
},
{
"restaurant_id": 6,
"name": "Engin Bozkurt",
"rating": 3,
"comments": "awesome",
"updatedAt": 1527643411893,
"createdAt": "2018-05-30T01:24:22.579Z",
"id": 40
},
{
"restaurant_id": "9",
"name": "selin",
"rating": "3",
"comments": "great",
"createdAt": "2018-05-30T02:06:16.579Z",
"updatedAt": "2018-05-30T02:06:16.579Z",
"id": 41
},
{
"restaurant_id": "4",
"name": "Engin Bozkurt",
"rating": "4",
"comments": "nice atmosphere",
"createdAt": "2018-06-01T19:09:07.190Z",
"updatedAt": "2018-06-01T19:09:07.190Z",
"id": 42
},
{
"restaurant_id": "3",
"name": "Engin Bozkurt",
"rating": "3",
"comments": "best",
"createdAt": "2018-06-01T19:09:54.858Z",
"updatedAt": "2018-06-01T19:09:54.858Z",
"id": 43
},
{
"restaurant_id": "7",
"name": "engin",
"rating": "4",
"comments": "cozy",
"createdAt": "2018-06-01T19:10:50.179Z",
"updatedAt": "2018-06-01T19:10:50.179Z",
"id": 44
},
{
"restaurant_id": "3",
"name": "cenk",
"rating": "2",
"comments": "not good",
"createdAt": "2018-06-02T19:52:49.708Z",
"updatedAt": "2018-06-02T19:52:49.708Z",
"id": 45
},
{
"restaurant_id": "6",
"name": "Amy",
"rating": "3",
"comments": "not bad",
"createdAt": "2018-06-02T20:26:33.548Z",
"updatedAt": "2018-06-02T20:26:33.548Z",
"id": 46
},
{
"restaurant_id": "7",
"name": "wesley",
"rating": "4",
"comments": "good",
"createdAt": "2018-06-04T01:45:25.965Z",
"updatedAt": "2018-06-04T01:45:25.965Z",
"id": 47
},
{
"restaurant_id": "6",
"name": "emily",
"rating": "3",
"comments": "not bad",
"createdAt": "2018-06-04T19:51:38.850Z",
"updatedAt": "2018-06-04T19:51:38.850Z",
"id": 48
},
{
"restaurant_id": "7",
"name": "Andy ",
"rating": "3",
"comments": "nice environment and good ervice",
"createdAt": "2018-06-13T15:41:57.555Z",
"updatedAt": "2018-06-13T15:41:57.555Z",
"id": 49
},
{
"restaurant_id": "3",
"name": "Philip",
"rating": "3",
"comments": "great asian cuisine",
"createdAt": "2018-06-19T15:00:46.243Z",
"updatedAt": "2018-06-19T15:00:46.243Z",
"id": 50
},
{
"restaurant_id": "2",
"name": "arnold",
"rating": "4",
"comments": "good pizza",
"createdAt": "2018-06-20T16:10:20.127Z",
"updatedAt": "2018-06-20T16:10:20.127Z",
"id": 51
},
{
"restaurant_id": "1",
"name": "Dolores",
"rating": "3",
"comments": "Great asian cuisine",
"createdAt": "2018-06-21T18:45:36.622Z",
"updatedAt": "2018-06-21T18:45:36.622Z",
"id": 52
},
{
"restaurant_id": "2",
"name": "Ford",
"rating": "5",
"comments": "great pizza",
"createdAt": "2018-06-21T18:50:44.624Z",
"updatedAt": "2018-06-21T18:50:44.624Z",
"id": 53
},
{
"restaurant_id": "1",
"name": "clementine",
"rating": "4",
"comments": "great chinese cuisine",
"createdAt": "2018-06-22T13:28:40.404Z",
"updatedAt": "2018-06-22T13:28:40.404Z",
"id": 54
},
{
"restaurant_id": "1",
"name": "clementine",
"rating": "4",
"comments": "great chinese cuisine",
"createdAt": "2018-06-22T13:28:47.209Z",
"updatedAt": "2018-06-22T13:28:47.209Z",
"id": 55
},
{
"restaurant_id": "1",
"name": "clementine",
"rating": "4",
"comments": "great chinese cuisine",
"createdAt": "2018-06-22T13:28:51.914Z",
"updatedAt": "2018-06-22T13:28:51.914Z",
"id": 56
},
{
"restaurant_id": "1",
"name": "clementine",
"rating": "4",
"comments": "great chinese cuisine",
"createdAt": "2018-06-22T13:30:33.706Z",
"updatedAt": "2018-06-22T13:30:33.706Z",
"id": 57
},
{
"restaurant_id": "7",
"name": "arnold",
"rating": "5",
"comments": "great burger",
"createdAt": "2018-06-22T13:54:33.737Z",
"updatedAt": "2018-06-22T13:54:33.737Z",
"id": 58
},
{
"restaurant_id": "7",
"name": "arnold",
"rating": "5",
"comments": "great burger",
"createdAt": "2018-06-22T13:54:59.031Z",
"updatedAt": "2018-06-22T13:54:59.031Z",
"id": 59
},
{
"restaurant_id": "4",
"name": "anthony",
"rating": "5",
"comments": "great place ",
"createdAt": "2018-06-22T13:56:47.635Z",
"updatedAt": "2018-06-22T13:56:47.635Z",
"id": 60
},
{
"restaurant_id": "4",
"name": "anthony",
"rating": "5",
"comments": "great place ",
"createdAt": "2018-06-22T13:58:05.659Z",
"updatedAt": "2018-06-22T13:58:05.659Z",
"id": 61
},
{
"restaurant_id": "5",
"name": "teddy",
"rating": "4",
"comments": "nice place",
"createdAt": "2018-06-22T17:27:59.222Z",
"updatedAt": "2018-06-22T17:27:59.222Z",
"id": 62
},
{
"restaurant_id": "5",
"name": "teddy",
"rating": "4",
"comments": "nice place",
"createdAt": "2018-06-22T17:28:29.173Z",
"updatedAt": "2018-06-22T17:28:29.173Z",
"id": 63
},
{
"restaurant_id": "7",
"name": "Henna",
"rating": "5",
"comments": "super burger",
"createdAt": "2018-06-22T17:40:14.838Z",
"updatedAt": "2018-06-22T17:40:14.838Z",
"id": 64
},
{
"restaurant_id": "3",
"name": "vanessa",
"rating": "4",
"comments": "nice cuisine",
"createdAt": "2018-06-22T17:55:15.316Z",
"updatedAt": "2018-06-22T17:55:15.316Z",
"id": 65
},
{
"restaurant_id": "6",
"name": "ford",
"rating": "4",
"comments": "nice place",
"createdAt": "2018-06-22T18:12:12.845Z",
"updatedAt": "2018-06-22T18:12:12.845Z",
"id": 66
},
{
"restaurant_id": "5",
"name": "jennifer",
"rating": "5",
"comments": "The pizza is just delightful and delicious",
"createdAt": "2018-06-22T19:27:53.231Z",
"updatedAt": "2018-06-22T19:27:53.231Z",
"id": 67
},
{
"restaurant_id": "1",
"name": "sementha",
"rating": "3",
"comments": "nice cuisine",
"createdAt": "2018-06-22T19:38:41.913Z",
"updatedAt": "2018-06-22T19:38:41.913Z",
"id": 68
},
{
"restaurant_id": "2",
"name": "muzeyyen",
"rating": "5",
"comments": "great pizza and nice service",
"createdAt": "2018-06-22T20:32:56.033Z",
"updatedAt": "2018-06-22T20:32:56.033Z",
"id": 69
},
{
"restaurant_id": "6",
"name": "beatrice",
"rating": "5",
"comments": "nice",
"createdAt": "2018-06-23T14:28:06.889Z",
"updatedAt": "2018-06-23T14:28:06.889Z",
"id": 70
},
{
"restaurant_id": "8",
"name": "george",
"rating": "5",
"comments": "The duth is perfect",
"createdAt": "2018-06-23T19:08:26.341Z",
"updatedAt": "2018-06-23T19:08:26.341Z",
"id": 71
},
{
"restaurant_id": "10",
"name": "hillary",
"rating": "5",
"comments": "best mexican cuisine",
"createdAt": "2018-06-23T19:09:24.337Z",
"updatedAt": "2018-06-23T19:09:24.337Z",
"id": 72
},
{
"restaurant_id": "2",
"name": "jonathan",
"rating": "5",
"comments": "great pizza",
"createdAt": "2018-06-24T10:24:38.538Z",
"updatedAt": "2018-06-24T10:24:38.538Z",
"id": 73
}
]
},
"schema": {
"restaurant": {
"id": {
"type": "integer",
"autoIncrement": true,
"primaryKey": true,
"unique": true
},
"createdAt": {
"type": "datetime"
},
"updatedAt": {
"type": "datetime"
}
},
"restaurants": {
"id": {
"type": "integer",
"autoIncrement": true,
"primaryKey": true,
"unique": true
},
"createdAt": {
"type": "datetime"
},
"updatedAt": {
"type": "datetime"
}
},
"reviews": {
"id": {
"type": "integer",
"autoIncrement": true,
"primaryKey": true,
"unique": true
},
"createdAt": {
"type": "datetime"
},
"updatedAt": {
"type": "datetime"
}
}
},
"counters": {
"restaurant": {
"id": 10
},
"restaurants": {
"id": 10
},
"reviews": {
"id": 73
}
}
}