Skip to content

Commit

Permalink
Tweak how other_schema is created, refs #47
Browse files Browse the repository at this point in the history
  • Loading branch information
simonw committed Feb 7, 2023
1 parent a2ae06e commit 02575da
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -130,11 +130,12 @@
INSERT INTO "user" (id, name)
VALUES (1, 'Lila');
CREATE SCHEMA other_schema
CREATE TABLE IF NOT EXISTS other_schema_categories (
id int not null primary key,
name varchar(32) not null
);
CREATE SCHEMA other_schema;
CREATE TABLE IF NOT EXISTS other_schema.other_schema_categories (
id int not null primary key,
name varchar(32) not null
);
INSERT INTO other_schema.other_schema_categories (id, name) VALUES (1, 'Other junk');
Expand Down

0 comments on commit 02575da

Please sign in to comment.