File tree 2 files changed +12
-6
lines changed
2 files changed +12
-6
lines changed Original file line number Diff line number Diff line change 14
14
<PackageReleaseNotes >https://github.com/frankhommers/Hangfire.PostgreSql/releases</PackageReleaseNotes >
15
15
<PackageProjectUrl >http://hmm.rs/Hangfire.PostgreSql</PackageProjectUrl >
16
16
<PackageLicenseUrl ></PackageLicenseUrl >
17
- <Version >1.8.5.0 </Version >
18
- <FileVersion >1.8.5.0 </FileVersion >
19
- <AssemblyVersion >1.8.5.0 </AssemblyVersion >
17
+ <Version >1.8.5.1 </Version >
18
+ <FileVersion >1.8.5.1 </FileVersion >
19
+ <AssemblyVersion >1.8.5.1 </AssemblyVersion >
20
20
<GeneratePackageOnBuild >True</GeneratePackageOnBuild >
21
21
<PackageLicenseFile >LICENSE.md</PackageLicenseFile >
22
22
<RepositoryUrl >https://github.com/frankhommers/Hangfire.PostgreSql</RepositoryUrl >
Original file line number Diff line number Diff line change 1
1
SET search_path = ' hangfire' ;
2
2
3
-
4
-
5
3
DO
6
4
$$
7
5
BEGIN
11
9
END
12
10
$$;
13
11
14
- ALTER SEQUENCE job_id_seq MAXVALUE 9223372036854775807 ;
12
+ do
13
+ $$
14
+ DECLARE
15
+ BEGIN
16
+ EXECUTE(' ALTER SEQUENCE ' || ' hangfire' || ' .job_id_seq AS bigint MAXVALUE 9223372036854775807' );
17
+ EXCEPTION WHEN syntax_error THEN
18
+ EXECUTE(' ALTER SEQUENCE ' || ' hangfire' || ' .job_id_seq MAXVALUE 9223372036854775807' );
19
+ END;
20
+ $$;
15
21
16
22
RESET search_path;
You can’t perform that action at this time.
0 commit comments