v1.7
New Features
- Analytics Platform implemented - You can now see how your blog was clicked
Migration
To migrate to the latest version (when using SQL database) please apply the following migration:
CREATE TABLE [dbo].[userrecords]
(
[id] [NVARCHAR](450) NOT NULL,
[useridentifierhash] [INT] NOT NULL,
[datetimeutcclicked] [DATETIME2](7) NOT NULL,
[urlclicked] [NVARCHAR](max) NULL,
CONSTRAINT [PK_UserRecords] PRIMARY KEY CLUSTERED ( [id] ASC )
)