Skip to content

Commit

Permalink
Merge pull request spring-projects#134 from broccolinisoup/master
Browse files Browse the repository at this point in the history
owners search has been case insensitive
  • Loading branch information
attil-io authored and Attilio committed Mar 6, 2016
2 parents ef9dae7 + 474081e commit 3b94ae1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/resources/db/hsqldb/initDB.sql
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ CREATE INDEX types_name ON types (name);
CREATE TABLE owners (
id INTEGER IDENTITY PRIMARY KEY,
first_name VARCHAR(30),
last_name VARCHAR(30),
last_name VARCHAR_IGNORECASE(30),
address VARCHAR(255),
city VARCHAR(80),
telephone VARCHAR(20)
Expand Down

0 comments on commit 3b94ae1

Please sign in to comment.