/* Adding new index for T_Comment to improve performance */
CREATE NONCLUSTERED INDEX IX_Comment_ParagraphId ON T_Comment ([ParagraphId]);
GO

/* Schema Versioning */
UPDATE T_SchemaInfo SET SchemaVersion = '6.7.0';
GO