Skip to content

Commit 9ff9634

Browse files
author
Jeff Hagen
committed
Fix postgres migration
1 parent b0aceb0 commit 9ff9634

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/NHibernate.Test/DbScripts/PostgreSQL83DialectLinqReadonlyCreateScript.sql

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ SELECT pg_catalog.setval('anotherentity_id_seq', 5, true);
114114

115115
CREATE TABLE compositeidentity (
116116
objectid integer NOT NULL,
117-
tenantid integer NOT NULL
117+
tenantid integer NOT NULL,
118118
name character varying(255)
119119
);
120120

@@ -1017,7 +1017,7 @@ INSERT INTO anotherentity (id, output, input) VALUES (3, NULL, NULL);
10171017
INSERT INTO anotherentity (id, output, input, compositeobjectid, compositetenantid) VALUES (4, 'output', 'input', 1, 10);
10181018
INSERT INTO anotherentity (id, output, input) VALUES (5, 'output', NULL);
10191019

1020-
INSERT INTO compositeidentity (objectid, tenantid, name) VALUES (1, 10, 'Jack Stephan')
1020+
INSERT INTO compositeidentity (objectid, tenantid, name) VALUES (1, 10, 'Jack Stephan');
10211021
--
10221022
-- TOC entry 2004 (class 0 OID 29626)
10231023
-- Dependencies: 1603

0 commit comments

Comments
 (0)