source: src/FinkiChattery/FinkiChattery.HangfireDatabase/HangFire/Tables/JobQueue.sql@ ad058b3

dev
Last change on this file since ad058b3 was ad058b3, checked in by Стојков Марко <mst@…>, 3 years ago

Hangfire is supported

  • Property mode set to 100644
File size: 300 bytes
Line 
1CREATE TABLE [HangFire].[JobQueue] (
2 [Id] BIGINT IDENTITY (1, 1) NOT NULL,
3 [JobId] BIGINT NOT NULL,
4 [Queue] NVARCHAR (50) NOT NULL,
5 [FetchedAt] DATETIME NULL,
6 CONSTRAINT [PK_HangFire_JobQueue] PRIMARY KEY CLUSTERED ([Queue] ASC, [Id] ASC)
7);
8
Note: See TracBrowser for help on using the repository browser.