mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-15 12:25:50 +00:00
Merge pull request #134 from broccolinisoup/master
owners search has been case insensitive
This commit is contained in:
commit
9ad12d39e4
1 changed files with 1 additions and 1 deletions
|
@ -36,7 +36,7 @@ CREATE INDEX types_name ON types (name);
|
||||||
CREATE TABLE owners (
|
CREATE TABLE owners (
|
||||||
id INTEGER IDENTITY PRIMARY KEY,
|
id INTEGER IDENTITY PRIMARY KEY,
|
||||||
first_name VARCHAR(30),
|
first_name VARCHAR(30),
|
||||||
last_name VARCHAR(30),
|
last_name VARCHAR_IGNORECASE(30),
|
||||||
address VARCHAR(255),
|
address VARCHAR(255),
|
||||||
city VARCHAR(80),
|
city VARCHAR(80),
|
||||||
telephone VARCHAR(20)
|
telephone VARCHAR(20)
|
||||||
|
|
Loading…
Reference in a new issue