CREATE TABLE [dbo].[{TABLE_NAME}](
	[jackpot_id] [int] IDENTITY(1,1) NOT NULL,
	[lottery_id] [int] NOT NULL,
	[total_pool] [bigint] NOT NULL,
	[rollover] [bigint] NOT NULL,
	[updated_at] [int] NOT NULL,
 CONSTRAINT [PK_{TABLE_NAME}] PRIMARY KEY CLUSTERED ([jackpot_id] ASC)
) ON [PRIMARY]
