bo_initial_data.sql 621 B

123456789101112
  1. USE [BO]
  2. GO
  3. -- User
  4. INSERT INTO [dbo].[User] ([Name],[LangLCID],[IsSystem],[IsEnabled]) VALUES (N'system',1033,1,0)
  5. -- MimeTypes
  6. INSERT INTO [dbo].[MimeType] ([MIMEType],[Extensions],[Description],[CreatedByUserId],[IsEnabled]) VALUES (N'text/plain', N'txt',N'Plain text file',1,1)
  7. INSERT INTO [dbo].[MimeType] ([MIMEType],[Extensions],[Description],[CreatedByUserId],[IsEnabled]) VALUES (N'application/octet-stream', N'bin',N'Binary file',1,1)
  8. -- BillingPlan
  9. INSERT INTO [dbo].[BillingPlan]([Name],[Code],[Description],[CreatedByUserId],[IsEnabled]) VALUES (N'Free', N'FREE', N'Free plan without limitations', 1,1)