You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Dec 24, 2022. It is now read-only.
Copy file name to clipboardExpand all lines: src/ServiceStack.OrmLite.PostgreSQL.Tests/SchemaTests.cs
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -53,10 +53,10 @@ public void Can_Create_Tables_With_Schema_in_PostgreSQL()
53
53
CreateSchemaIfNotExists(db);
54
54
db.DropAndCreateTable<User>();
55
55
56
-
vartables=db.Column<string>(@"SELECT '[' || n.nspname || '].[' || c.relname ||']' FROM pg_class c LEFT JOIN pg_namespace n ON n.oid = c.relnamespace WHERE c.relname = 'Users' AND n.nspname = 'TestSchema'");
56
+
vartables=db.Column<string>(@"SELECT '[' || n.nspname || '].[' || c.relname ||']' FROM pg_class c LEFT JOIN pg_namespace n ON n.oid = c.relnamespace WHERE c.relname = 'users' AND n.nspname = 'TestSchema'");
57
57
58
58
//PostgreSQL dialect should create the table in the schema
0 commit comments