I know but I only support this project. Anyway I did it by updating few places in Kentico:
Update CMS_Class
UPDATE [dbo].[CMS_Class] SET [ClassTableName] = 'newtablename' WHERE [ClassName] = 'pagetypecodename';
GO
Rename sql table name
EXEC sp_rename 'oldtablename', 'newtablename';
GO
Create new join view
CREATE VIEW [dbo].[View_newname_Joined] AS SELECT View_CMS_Tree_Joined.*, newtablename.* FROM View_CMS_Tree_Joined INNER JOIN newtablename ON View_CMS_Tree_Joined.DocumentForeignKeyValue = newtablename.[ID] WHERE (ClassName = 'pagetypecodename')
GO
Remvoe old join view
DROP VIEW [dbo].[View_oldname_Joined]
GO