Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /****** Object: Table [dbo].[Tankkaart] Script Date: 01/01/2022 17:33:01 ******/
- SET ANSI_NULLS ON
- GO
- SET QUOTED_IDENTIFIER ON
- GO
- CREATE TABLE [dbo].[Tankkaart](
- [Id] [int] IDENTITY(1,1) NOT NULL,
- [Kaartnummer] [VARCHAR](60) NOT NULL,
- [Vervaldatum] [DATE] NOT NULL,
- [Pincode] [VARCHAR](50) NULL,
- [IsGeblokkeerd] [bit] NOT NULL,
- CONSTRAINT [PK_Tankkaart] 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].[Tankkaart] ADD DEFAULT ((0)) FOR [IsGeblokkeerd]
- GO
Advertisement
Add Comment
Please, Sign In to add comment