File tree 2 files changed +5
-5
lines changed
2 files changed +5
-5
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.1 </Version >
18
- <FileVersion >1.8.5.1 </FileVersion >
19
- <AssemblyVersion >1.8.5.1 </AssemblyVersion >
17
+ <Version >1.8.5.2 </Version >
18
+ <FileVersion >1.8.5.2 </FileVersion >
19
+ <AssemblyVersion >1.8.5.2 </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 13
13
$$
14
14
DECLARE
15
15
BEGIN
16
- EXECUTE(' ALTER SEQUENCE ' || ' hangfire' || ' .job_id_seq AS bigint MAXVALUE 9223372036854775807' );
16
+ EXECUTE(' ALTER SEQUENCE ' || ' hangfire' || ' .job_id_seq MAXVALUE 9223372036854775807' );
17
17
EXCEPTION WHEN syntax_error THEN
18
- EXECUTE(' ALTER SEQUENCE ' || ' hangfire' || ' .job_id_seq MAXVALUE 9223372036854775807' );
18
+ EXECUTE(' ALTER SEQUENCE ' || ' hangfire' || ' .job_id_seq AS bigint MAXVALUE 9223372036854775807' );
19
19
END;
20
20
$$;
21
21
You can’t perform that action at this time.
0 commit comments