Skip to content

v1.5

Compare
Choose a tag to compare
@linkdotnet linkdotnet released this 03 Aug 05:56
· 1318 commits to master since this release

New features

  • About - Me Page (optional):
    • Short profile overview
    • Skill-Table to show the proficiency of a skill you have

Improvements

  • Refactored better Repository pattern (now open type repository instead of one repository per type)
  • Some CSS tweaks

Migration

To migrate the SQL database from an earlier version to v1.5:

CREATE TABLE [dbo].[Skills](
	[Id] [nvarchar](450) NOT NULL,
	[IconUrl] [nvarchar](max) NULL,
	[Name] [nvarchar](max) NULL,
	[Capability] [nvarchar](max) NULL,
	[ProficiencyLevel] [nvarchar](max) NULL,
	CONSTRAINT [PK_Skills] PRIMARY KEY CLUSTERED
	(
		[Id]
	)
)
GO

EXEC sp_rename 'dbo.Tag','Tags';
GO