Skip to content
This repository was archived by the owner on Oct 26, 2023. It is now read-only.

Commit bbd6c43

Browse files
author
Thomas Risberg
committed
cleanup SQL
1 parent 3f72425 commit bbd6c43

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

jdbc/src/main/resources/sql/schema.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ CREATE TABLE customer (
66
CREATE UNIQUE INDEX ix_customer_email ON CUSTOMER (email_address ASC);
77
CREATE TABLE address (
88
id BIGINT IDENTITY PRIMARY KEY,
9-
customer_id BIGINT CONSTRAINT address_customer_ref FOREIGN KEY REFERENCES customer (id),
9+
customer_id BIGINT CONSTRAINT address_customer_ref REFERENCES customer (id),
1010
street VARCHAR(255),
1111
city VARCHAR(255),
1212
country VARCHAR(255));

0 commit comments

Comments
 (0)