Advertisement
daxruiz

Untitled

Feb 24th, 2023
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. USE [NectarSSO]
  2. GO
  3. SET IDENTITY_INSERT [dbo].[ConfigLanguages] ON
  4. GO
  5. INSERT [dbo].[ConfigLanguages] ([ConfigLanguageId], [Name], [CreatedDate], [Active], [Culture]) VALUES (1, N'Espanol', CAST(N'2023-02-24T00:00:00.0000000' AS DateTime2), 1, N'es-NI')
  6. GO
  7. INSERT [dbo].[ConfigLanguages] ([ConfigLanguageId], [Name], [CreatedDate], [Active], [Culture]) VALUES (2, N'English', CAST(N'2023-02-24T00:00:00.0000000' AS DateTime2), 1, N'en-US')
  8. GO
  9. SET IDENTITY_INSERT [dbo].[ConfigLanguages] OFF
  10. GO
  11.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement