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