sql Insert SlickCMS User
Use [slickcms] Insert Into [dbo].[tbl_User] ( [UUID] ,[Name] ,[Email] ,[Password] ,[URL] ,[IP] ,[Biography] ,[DateCreated] ,[DateModified] ,[Active] ,[LoginFails] ) Select NEWID() As [UUID] ,'Demo' As [Name] ,'demo@example.com' As [Email] ,'fe01ce2a7fbac8fafaed7c982a04e229' As [Password]--`demo` MD5 hashed http://slickhouse.com/tools/Hash.aspx ,'http://slickcms.azurewebsites.net/' As [URL] ,'127.0.0.1' As [IP] ,'' As [Biography] ,GETDATE() As [DateCreated] ,GETDATE() As [DateModified] ,1 As [Active] ,0 As [LoginFails]
Insert a new User into the SlickCMS.tbl_User table with a name of Demo and a password of demo
Updated: Tuesday 24th March 2020, 08:08pm
There are 0 comments
Comments are currently closed.