Skip to content

Commit d1bd08e

Browse files
authored
Revert (accidental?) change that prevents Install.v14.sql from succeeding (#202)
* Revert (accidental?) change that prevents Install.v14.sql from succeeding Reverts the installer script change made (accidentally?) during 0c48d67 * Remove extra new-line at end of script not there previously
1 parent 10af60f commit d1bd08e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Hangfire.PostgreSql/Scripts/Install.v14.sql

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ do
1313
$$
1414
DECLARE
1515
BEGIN
16-
EXECUTE('ALTER SEQUENCE ' || 'hangfire' || '.job_id_seq MAXVALUE 9223372036854775807');
16+
EXECUTE('ALTER SEQUENCE ' || 'hangfire' || '.job_id_seq AS bigint MAXVALUE 9223372036854775807');
1717
EXCEPTION WHEN syntax_error THEN
18-
EXECUTE('ALTER SEQUENCE ' || 'hangfire' || '.job_id_seq AS bigint MAXVALUE 9223372036854775807');
18+
EXECUTE('ALTER SEQUENCE ' || 'hangfire' || '.job_id_seq MAXVALUE 9223372036854775807');
1919
END;
2020
$$;
2121

22-
RESET search_path;
22+
RESET search_path;

0 commit comments

Comments
 (0)