mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-22 07:15:49 +00:00
Capitalized pet names
This commit is contained in:
parent
27109010a5
commit
500b881654
3 changed files with 18 additions and 18 deletions
|
@ -15,12 +15,12 @@ INSERT INTO vet_specialties VALUES (3, 3);
|
|||
INSERT INTO vet_specialties VALUES (4, 2);
|
||||
INSERT INTO vet_specialties VALUES (5, 1);
|
||||
|
||||
INSERT INTO types VALUES (1, 'cat');
|
||||
INSERT INTO types VALUES (2, 'dog');
|
||||
INSERT INTO types VALUES (3, 'lizard');
|
||||
INSERT INTO types VALUES (4, 'snake');
|
||||
INSERT INTO types VALUES (5, 'bird');
|
||||
INSERT INTO types VALUES (6, 'hamster');
|
||||
INSERT INTO types VALUES (1, 'Cat');
|
||||
INSERT INTO types VALUES (2, 'Dog');
|
||||
INSERT INTO types VALUES (3, 'Lizard');
|
||||
INSERT INTO types VALUES (4, 'Snake');
|
||||
INSERT INTO types VALUES (5, 'Bird');
|
||||
INSERT INTO types VALUES (6, 'Hamster');
|
||||
|
||||
INSERT INTO owners VALUES (1, 'George', 'Franklin', '110 W. Liberty St.', 'Madison', '6085551023');
|
||||
INSERT INTO owners VALUES (2, 'Betty', 'Davis', '638 Cardinal Ave.', 'Sun Prairie', '6085551749');
|
||||
|
|
|
@ -15,12 +15,12 @@ INSERT INTO vet_specialties VALUES (3, 3);
|
|||
INSERT INTO vet_specialties VALUES (4, 2);
|
||||
INSERT INTO vet_specialties VALUES (5, 1);
|
||||
|
||||
INSERT INTO types VALUES (1, 'cat');
|
||||
INSERT INTO types VALUES (2, 'dog');
|
||||
INSERT INTO types VALUES (3, 'lizard');
|
||||
INSERT INTO types VALUES (4, 'snake');
|
||||
INSERT INTO types VALUES (5, 'bird');
|
||||
INSERT INTO types VALUES (6, 'hamster');
|
||||
INSERT INTO types VALUES (1, 'Cat');
|
||||
INSERT INTO types VALUES (2, 'Dog');
|
||||
INSERT INTO types VALUES (3, 'Lizard');
|
||||
INSERT INTO types VALUES (4, 'Snake');
|
||||
INSERT INTO types VALUES (5, 'Bird');
|
||||
INSERT INTO types VALUES (6, 'Hamster');
|
||||
|
||||
INSERT INTO owners VALUES (1, 'George', 'Franklin', '110 W. Liberty St.', 'Madison', '6085551023');
|
||||
INSERT INTO owners VALUES (2, 'Betty', 'Davis', '638 Cardinal Ave.', 'Sun Prairie', '6085551749');
|
||||
|
|
|
@ -15,12 +15,12 @@ INSERT IGNORE INTO vet_specialties VALUES (3, 3);
|
|||
INSERT IGNORE INTO vet_specialties VALUES (4, 2);
|
||||
INSERT IGNORE INTO vet_specialties VALUES (5, 1);
|
||||
|
||||
INSERT IGNORE INTO types VALUES (1, 'cat');
|
||||
INSERT IGNORE INTO types VALUES (2, 'dog');
|
||||
INSERT IGNORE INTO types VALUES (3, 'lizard');
|
||||
INSERT IGNORE INTO types VALUES (4, 'snake');
|
||||
INSERT IGNORE INTO types VALUES (5, 'bird');
|
||||
INSERT IGNORE INTO types VALUES (6, 'hamster');
|
||||
INSERT IGNORE INTO types VALUES (1, 'Cat');
|
||||
INSERT IGNORE INTO types VALUES (2, 'Dog');
|
||||
INSERT IGNORE INTO types VALUES (3, 'Lizard');
|
||||
INSERT IGNORE INTO types VALUES (4, 'Snake');
|
||||
INSERT IGNORE INTO types VALUES (5, 'Bird');
|
||||
INSERT IGNORE INTO types VALUES (6, 'Hamster');
|
||||
|
||||
INSERT IGNORE INTO owners VALUES (1, 'George', 'Franklin', '110 W. Liberty St.', 'Madison', '6085551023');
|
||||
INSERT IGNORE INTO owners VALUES (2, 'Betty', 'Davis', '638 Cardinal Ave.', 'Sun Prairie', '6085551749');
|
||||
|
|
Loading…
Reference in a new issue