Crie no ServerDB
USE [ServerDB]
GO
/****** Object: Table [dbo].[Vip] Script Date: 15/09/2026 21:31:53 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[Vip](
[ID] [int] IDENTITY(1,1) NOT NULL,
[PlayerName] [varchar](32) NOT NULL,
[IdVip] [int] NOT NULL,
[DateStart] [datetime] NOT NULL,
[DateEnd] [datetime] NOT NULL,
PRIMARY KEY CLUSTERED
(
[ID] 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
ALTER TABLE [dbo].[Vip] ADD DEFAULT (getdate()) FOR [DateStart]
GO