USE [AjaxSamples]
GO
/****** Object:  Table [dbo].[FruitChart]    Script Date: 1/16/2025 5:04:13 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[FruitChart](
	[FruitId] [int] IDENTITY(1,1) NOT NULL,
	[Name] [varchar](20) NOT NULL,
	[Popularity] [int] NOT NULL,
	[Color] [nvarchar](10) NOT NULL,
 CONSTRAINT [PK_FruitChart] PRIMARY KEY CLUSTERED 
(
	[FruitId] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY]
) ON [PRIMARY]
GO
SET IDENTITY_INSERT [dbo].[FruitChart] ON 
GO
INSERT [dbo].[FruitChart] ([FruitId], [Name], [Popularity], [Color]) VALUES (1, N'Mango', 20, N'#FEBD01')
GO
INSERT [dbo].[FruitChart] ([FruitId], [Name], [Popularity], [Color]) VALUES (2, N'Orange', 40, N'#FF8C00')
GO
INSERT [dbo].[FruitChart] ([FruitId], [Name], [Popularity], [Color]) VALUES (3, N'Peach', 55, N'#FFCBA6')
GO
SET IDENTITY_INSERT [dbo].[FruitChart] OFF
GO
