CREATE TABLE [dbo].[WEBSHOP_PRICES](
	[price_id] [int] IDENTITY(1,1) NOT NULL,
	[shop_item_id] [int] NOT NULL,
	[currency_slug] [varchar](20) NOT NULL,
	[price] [decimal](18,2) NOT NULL DEFAULT 0,
	[active] [tinyint] NOT NULL DEFAULT 1,
	[created_at] [int] NOT NULL,
	[updated_at] [int] NOT NULL,
	CONSTRAINT [PK_WEBSHOP_PRICES] PRIMARY KEY CLUSTERED ([price_id] ASC)
)
