Skip to content

Commit

Permalink
fixed typo
Browse files Browse the repository at this point in the history
  • Loading branch information
mpscholten committed Feb 10, 2024
1 parent 2b297b2 commit c7a984c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion NixSupport/nixosModules/appWithPostgres.nix
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ in
CREATE DATABASE ${cfg.databaseName} OWNER ${cfg.databaseUser};
GRANT ALL PRIVILEGES ON DATABASE ${cfg.databaseName} TO "${cfg.databaseUser}";
\connect ${cfg.databaseName}
SET USER ${cfg.databaseUser};
SET ROLE '${cfg.databaseUser}';
CREATE TABLE IF NOT EXISTS schema_migrations (revision BIGINT NOT NULL UNIQUE);
\i ${ihp}/lib/IHP/IHPSchema.sql
\i ${cfg.schema}
Expand Down

0 comments on commit c7a984c

Please sign in to comment.