This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export const db = [ | |
{ | |
id: 1, | |
name: 'Lukather', | |
image: 'guitarra_01', | |
description: 'Morbi ornare augue nisl, vel elementum dui mollis vel. Curabitur non ex id eros fermentum hendrerit.', | |
price: 299, | |
}, | |
{ | |
id: 2, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
INSERT INTO reservaciones (nombre, apellido, hora, fecha, servicios) VALUES | |
('Juan', 'De la torre', '10:30:00', '2021-06-28', 'Corte de Cabello Adulto, Corte de Barba' ), | |
('Antonio', 'Hernandez', '14:00:00', '2021-07-30', 'Corte de Cabello Niño'), | |
('Pedro', 'Juarez', '20:00:00', '2021-06-25', 'Corte de Cabello Adulto'), | |
('Mireya', 'Perez', '19:00:00', '2021-06-25', 'Peinado Mujer'), | |
('Jose', 'Castillo', '14:00:00', '2021-07-30', 'Peinado Hombre'), | |
('Maria', 'Diaz', '14:30:00', '2021-06-25', 'Tinte'), | |
('Clara', 'Duran', '10:00:00', '2021-07-01', 'Uñas, Tinte, Corte de Cabello Mujer'), | |
('Miriam', 'Ibañez', '09:00:00', '2021-07-01', 'Tinte'), |